

<!-- Begin
function verify() {
var themessage = "You are required to complete the following fields: \n";


if (document.online_contact.email.value=="") {
	themessage = themessage + " -  Email \n";
	}
 
	
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: \n") {
document.online_contact.submit();
}
else {
alert(themessage);
return false;
   }
}
//  End -->