function submitForm()
{
    var formlist = "";

    var frm = document.forms["SUBSCRIBERPREFS"];

    // validate the email address to ensure the correct format
    var emailregex = /^[\w\_\-\.]+@[\w\_\-\.]+\.\w+$/;
    var emailresult = frm.email.value.match(emailregex);
  
    if (emailresult == null)
    {
        alert("The email address you entered is not in a correct format.\n \n                       Please try again!");
		return(false);
	} 
}