function enviar()
{
	validar();
}
	
function validar()
{
	if (document.contactar.nombre.value=="") 
		{
			alert ("Por favor, rellene el campo NOMBRE ");
			document.contactar.nombre.focus();
		}
		else 
			if (document.contactar.observaciones.value=="") 
			{
				alert ("Por favor, rellene el campo OBSERVACIONES");
				document.contactar.observaciones.focus();
			}
			else 
			{
				document.contactar.submit();
			}

	
}