
function EnviarComentarios(idPais)
{
	var ok = true;
	if (document.getElementById("txtContactoNombre").value=="")
	{
		alert(mensajes[6]);
		document.getElementById("txtContactoNombre").focus();
		ok = false;	
	}

	if (document.getElementById("txtContactoEMail").value=="")
	{
		alert(mensajes[13]);
		document.getElementById("txtContactoEMail").focus();
		ok = false;	
	}
	
	if(!ValidarMail(document.getElementById("txtContactoEMail").value))
	{
		alert(mensajes[13]);
		document.getElementById("txtContactoEMail").focus();
		ok=false;
	}
	
	if (document.getElementById("txtAreaComentarios").value=="")
	{
		alert(mensajes[7]);
		document.getElementById("txtAreaComentarios").focus();
		ok = false;	
	}
	
	if(ok)
	{
		Navegar("./FrmContacto.aspx",{intPaso: "E", idPais: idPais, Nombre: document.getElementById("txtContactoNombre").value, EMail: document.getElementById("txtContactoEMail").value, Telefono: document.getElementById("txtContactoTelefono").value, Tipo: document.getElementById("cmbTipo").value, Comentario: document.getElementById("txtAreaComentarios").value});
	}
}

function LimpiarContacto()
{
	document.getElementById("txtContactoNombre").value="";
	document.getElementById("txtAreaComentarios").value="";
}
