
function EnviarRecomendacion(idPais, idContenido)
{
	var ok = true;
	if (document.getElementById("txtDestinatario").value=="")
	{
		alert(mensajes[8]);
		document.getElementById("txtDestinatario").focus();
		ok = false;	
	}

	if (!ValidarMail(document.getElementById("txtDestinatario").value))
	{
		alert(mensajes[9]);
		document.getElementById("txtDestinatario").focus();
		ok = false;	
	}

	if (document.getElementById("txtContactoNombre").value=="")
	{
		alert(mensajes[10]);
		document.getElementById("txtContactoNombre").focus();
		ok = false;	
	}
	
	if (document.getElementById("txtAreaComentarios").value=="")
	{
		alert(mensajes[7]);
		document.getElementById("txtAreaComentarios").focus();
		ok = false;	
	}
	
	if(ok)
	{
		Navegar("./FrmRecomendacion.aspx",{intPaso: "E", idPais: idPais, idContenido: idContenido, Destinatario: document.getElementById("txtDestinatario").value, Nombre: document.getElementById("txtContactoNombre").value, Comentario: document.getElementById("txtAreaComentarios").value});
	}
}

function LimpiarRecomendacion()
{
	document.getElementById("txtDestinatario").value="";
	document.getElementById("txtContactoNombre").value="";
	document.getElementById("txtAreaComentarios").value="";
}
