<!-- Begin
// =======================================
function noEntry() {
mt=document.form.SUB_ADDR.value;
if ((mt.match("@")))
{ return true; }
else
 {
alert("I'm sorry. Your Email address must be completed before I can submit this form for processing.");
document.form.SUB_ADDR.value="Please enter your email address";
document.form.SUB_ADDR.focus();
return false;
}

}
//  End -->



