


function nuevoAjax() {
	var xmlhttp=false;
	try {
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
			xmlhttp=false;
		}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='Sin definir') {
		xmlhttp=new XMLHttpRequest();
	}
	return xmlhttp;
}


function recomendar(Nremitente,Eremitente,Ndestinatario,Edestinatario)
{
		contenedor=document.getElementById('msgForm');
		contenedor.innerHTML="<div align='center'><img src='images/public/miniload.gif'></div>";
		ajax=nuevoAjax();
		ajax.open("GET","ajax_recomendar_pagina.php?&nremitente="+Nremitente+"&eremitente="+Eremitente+"&ndestinatario="+Ndestinatario+"&edestinatario="+Edestinatario,true);
		ajax.onreadystatechange=function()
		{	if (ajax.readyState==4) 
			{	window.location=ajax.responseText;	}
		}
		ajax.send(null);
		
}