// JavaScript Document
function enviar() {
	with (document.datos)
	{
		if (nombre.value == "")
		{
			alert("Escriba su nombre");
		}
		else if (email.value == "")
		{
			alert("Escriba su E-Mail");
		}		
		else if (telefono.value == "")
		{
			alert("Escriba su teléfono");
		}				
		else
		{
			submit();
		}
	}
}
