function checkEmail(fld) {


  var entry = fld.value;

  var hotmail = (entry.indexOf("@hotmail") > 0 || entry.indexOf("@msn.") > 0 || entry.indexOf("@live.") > 0);

  if (hotmail) {
    return confirm("IMPORTANT: Hotmail/MSN Users\r\n\r\Hotmail/MSN users are currently experiencing problems receiving E-mail from us.\r\n\r\nDo you have another E-mail account you can use?\r\n\r\nPress CANCEL to enter an alternative E-mail (recommended)\r\n\r\nPress OK to contine with your Hotmail/MSN E-mail.\r\n\r\n");
  }
}

