function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function checkAndGo() {
    if ((document.frmContact.txtName.value == '') ||
        ((document.frmContact.txtEmail.value == '') && (document.frmContact.txtPhone.value == '')) ||
        (document.frmContact.slctRequest.selectedIndex == 0) ||
        (document.frmContact.slctContactMethod.selectedIndex == 0)) {
      alert("Please complete the contact form so that we may address your inquiry as soon as possible.");
    }
    else {
      document.frmContact.submit();
    }
}

