function validateForm(Email) {
with (document.Email) {
var alertMsg = "You forgot to fill:";
if (Nombre.value == "") alertMsg += "\nName";
if (Email.value == "") alertMsg += "\nEmail";
if (Comentarios.value == "") alertMsg += "\nComments";
if (alertMsg != "You forgot to fill:") {
alert(alertMsg);
return false;
} else {
return true;
} } }