function validar() {

	if (document.contactform.Nombre.value.length==0) { alert("Por favor ingrese su nombre"); return false; }
	if (document.contactform.Telefono.value.length==0) { alert("Por favor ingrese su numero de telefono"); return false; }
	if (document.contactform.EmailFrom.value.length==0) { alert("Por favor ingrese su direccion de e-mail"); return false; }
	if (document.contactform.Comentarios.value.length==0) { alert("Por favor ingrese su comentario"); return false; }

	document.contactform.submit()
	return true;
}