var marqueepos;
function rc_or_destaque(pos,estado){
	if(estado=="on"){
		document.getElementById('rc_or_d'+pos).style.border='1px solid #947475';
		document.getElementById('rc_or_d'+pos).style.backgroundColor='#e5acCc';
		document.getElementById('rc_or_a'+pos).style.textDecoration='underline';
	}
	else{
		document.getElementById('rc_or_d'+pos).style.border='1px solid #9594b4';
		document.getElementById('rc_or_a'+pos).style.textDecoration='';
		mp=document.getElementById('marqueepos').value;
		if(pos==mp){
			document.getElementById('rc_or_d'+pos).style.backgroundColor='#fAe3ef';
		}else{
			document.getElementById('rc_or_d'+pos).style.backgroundColor='#fFd4f0';
		}
	}	
}
function compartilhar_recado_visu(){document.getElementById('rc_explicacao').style.display='block';}
function fechar_compartilhar_recado_visu(){document.getElementById('rc_explicacao').style.display='none';}
function destacar_recado_compartilhado(status){
	if(status=="s"){document.getElementById("img_rcli").src="layout/imagens/rc_bt_recados_compartilhados2.jpg";}
	else {document.getElementById("img_rcli").src="layout/imagens/rc_bt_recados_compartilhados.jpg";}
}
function destacar_botao_ir(status){
	if(status=="s"){document.getElementById("rc_bt_next").src="layout/imagens/rc_bt_ir2.jpg";}
	else {document.getElementById("rc_bt_next").src="layout/imagens/rc_bt_ir.jpg";}
}
function destacar_botao_voltar(status){
	if(status=="s"){document.getElementById("rc_bt_prev2").src="layout/imagens/rc_bt_voltar3.jpg";}
	else {document.getElementById("rc_bt_prev2").src="layout/imagens/rc_bt_voltar2.jpg";}
}

function rc_ver_recado(pos){
	/*limpa todo*/
	/*apertado*/
	var px=document.getElementById('marqueepos').value;
	if(pos=="n"){
		var np=parseInt(px)+1;
	}else{
		var np=parseInt(px)-1;
	}
	document.getElementById('marqueepos').value=np;
	box='rc_preenche_recado';
	xmlhttp=GetXmlHttpObject();	
	if (xmlhttp==null){
		alert ("Browser does not support HTTP Request");
		return;
	}
	if(np>1){
		document.getElementById("rc_bt_prev").style.display="none";
		document.getElementById("rc_bt_prev2").style.display="block";
	}else{
		document.getElementById("rc_bt_prev2").style.display="none";
		document.getElementById("rc_bt_prev").style.display="block";		
	}
	var url="agregados/minha_conta_recados_compartilhados.php?pos="+np;
	xmlhttp.onreadystatechange=stateChanged;
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
}


