
function runContactenos()
{
	llamarasincrono('sections/contactenos/main.php', 'content');
}


function contactar()
{
	incompleto = false;
	
	nombre = getValorFromInput('Nombre');
	telefono = getValorFromInput('Telefono');
	eMail = getValorFromInput('eMail');
	pais = getValorFromInput('Pais');
	consulta = getValorFromInput('Consulta');
	
	post = "";	
	post += "?nombre="+nombre;
	post += "&telefono="+telefono;
	post += "&eMail="+eMail;
	post += "&pais="+pais;
	post += "&consulta="+consulta;
	
	if(incompleto==true) 
	{
		alert("Algunos campos del formulario no han sido correctamente completados");	
		return;
	}
	
	llamarasincrono('sections/contactenos/sendConsulta.php'+post, 'content');
	
}
