<!-- Begin

function verify()

{
var themessage = "ERROR!:\n";

if (document.mail_list.email.value=="")

{
themessage = themessage + "\n - The Email Address field should not be empty!";
}

if (document.mail_list.email.value=="click + enter email address")

{
themessage = themessage + "\n - You have not entered your Email Address!";
}


//alert if fields are empty and cancel form submit

if (themessage == "ERROR!:\n")
{
document.mail_list.submit();
}

else

{
alert(themessage);
return false;
}

}
//  End -->
