<!--
function checkFields() {
   missinginfo = "";

   if ((document.form1.EmailAddress.value == "") || 
   (document.form1.EmailAddress.value.indexOf('@') == -1) || 
   (document.form1.EmailAddress.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 save button again. \n________________________________\n\nPlease note we need your email address \nin order to send you updates. \nTherefore it's important to get it right!";
     alert(missinginfo);
     return false;
    }
     else {return true}
}

function MM_popupMsg(msg) { //v1.0
  alert(msg);
}
//-->

