function contactCheck() {
var themessage = "All fields are required: ";
if (document.contact.business.value=="") {
themessage = themessage + "\n * Business Name";
}
if (document.contact.contactname.value=="") {
themessage = themessage + "\n * Contact Name";
}
 
if (document.contact.address.value==""){
themessage = themessage + "\n * Address";
}

if (document.contact.city.value==""){
themessage = themessage + "\n * City";
}
if (document.contact.province.value==""){
themessage = themessage + "\n * Province";
}
if (document.contact.zip.value==""){
themessage = themessage + "\n * Postal Code";
}
if (document.contact.phone.value==""){
themessage = themessage + "\n * Phone";
}
if (document.contact.email.value==""){
themessage = themessage + "\n * Email";
}
 //alert if fields are empty and cancel form submit
if (themessage == "All fields are required: ") {
document.contact.submit();
}

else {
alert(themessage);
return false;
   }
}

