

function checkmailForm() {
with (document.mailForm) {
var alertMsg = "\nPlease enter your:\n";
if (email.value == "") alertMsg += "\nEmail Address";

if (alertMsg != "\nPlease enter your:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
//-->



function checkmailForm1() {
with (document.mailForm1) {
var alertMsg = "\nPlease enter your:\n";
if (email.value == "") alertMsg += "\nEmail Address";

if (alertMsg != "\nPlease enter your:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
//-->
