function Verify(f) {
   var ErrorString="";
   if (isBlank(f.contactName)) ErrorString += "\n - Your full name is required";
   if (isBlank(f.emailFrom))   ErrorString += "\n - Your e-mail address is required";
   else if (testSimpleEmail(f.emailFrom)) ErrorString += "\n - Your e-mail address appears to be invalid";
   if (isBlank(f.subject)) ErrorString += "\n - Please enter a subject for your message";
   if (isBlank(f.message)) ErrorString += "\n - Please enter your message";
   return errorAlert(ErrorString);
}