<!--
function checkcontact() {
   missinginfo = "";
   
    
   if(document.form1.name.value == "") {
      missinginfo += "\n     -  Name";
   
   }
   if(document.form1.address.value == "") {
      missinginfo += "\n     -  Address";
   
   }
   if ((document.form1.email.value == "") || 
   (document.form1.email.value.indexOf('@') == -1) || 
   (document.form1.email.value.indexOf('.') == -1)) {
      missinginfo += "\n     -  Email address";
    }


  
   if (missinginfo != "") {
     missinginfo ="________________________________       \n" +
     "You forgot to fill in your:\n" +
     missinginfo + "\n________________________________" +
     "\nPlease correct your mistake and \nclick the send enquiry button again. \n________________________________\n\nPlease remember that this information \nwill be used to contact you. \nTherefore it's important to get it right!";
     alert(missinginfo);
     return false;
    }
     else {return true}
}

function MM_popupMsg(msg) { //v1.0
  alert(msg);
}
//-->
