function ValidateEmail() { var x; var alertmsg; x=0; alertmsg = "The following fields are required: "; if (document.form.from.value == "") { if (x > 0) { alertmsg = alertmsg + ", "; } alertmsg = alertmsg + "Your Name"; x = x + 1; } if (document.form.email.value == "") { if (x > 0) { alertmsg = alertmsg + ", "; } alertmsg = alertmsg + "Your Email"; x = x + 1; } if (document.form.subject.value == "") { if (x > 0) { alertmsg = alertmsg + ", "; } alertmsg = alertmsg + "Subject"; x = x + 1; } if (document.form.body.value == "") { if (x > 0) { alertmsg = alertmsg + ", "; } alertmsg = alertmsg + "Body"; x = x + 1; } if (x == 0) { document.form.submit(); } else { alert(alertmsg); return false; } }