function MM_popupMsg(msg) { //v1.0
  alert(msg);
}

function SBW_validateForm(theForm) {
  var errors='';
  if (theForm.EMail.value == "" || theForm.EMail.value == "E-mail address") {
    errors = '- E-Mail address is required.\n' + errors;
//    theForm.EMail.focus();
  } else {
    var p = theForm.EMail.value.indexOf('@');
    if (p<1 || p==(theForm.EMail.value.length-1)) {
      errors = '- E-Mail must be a valid address.\n' + errors;
//      theForm.EMail.focus();
    }
  }
  if (theForm.FName.value == "" || theForm.FName.value == "First name") {
    errors = '- Your Name is required.\n' + errors;
//    theForm.FName.focus();
  }
  if (errors) {
  alert('The following error(s) occurred:\n\n'+errors);
  return (false);
  }
  else return (true);
}
