function validateForm(Email) {
with (document.Email) {
var alertMsg = "Olvidaste estos datos:";
if (Name.value == "") alertMsg += "\nNombre";
if (Email.value == "") alertMsg += "\nEmail";
if (As.value == "") alertMsg += "\nAsunto";
if (Comments.value == "") alertMsg += "\nTexto";
if (alertMsg != "Olvidaste estos datos:") {
alert(alertMsg);
return false;
} else {
return true;
} } }
