function MM_openBrWindow(theURL,winName,features) { 
  winPop=window.open(theURL,winName,features);
  winPop.focus();
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function checkForm() {
  if (document.frmEmail.WName.value == "") {
  	 alert ("You forgot to enter your NAME!");
	 return false;
  }
  else if (document.frmEmail.WBusName.value == "") {
  	 alert ("You forgot to enter your BUSINESS NAME/TYPE");
  	 return false;
  }
  else if (document.frmEmail.WEmail.value == "") {
  	 alert ("You forgot to enter your EMAIL ADDRESS!");
  	 return false;
  }
  else if (document.frmEmail.WPhone.value == "") {
  	 alert ("You forgot to enter your PHONE NUMBER!");
  	 return false;
  }
  else if (document.frmEmail.WTellUs.value == "") {
  	 alert ("You forgot to TELL US ABOUT THE SERVICES YOU NEED!");
  	 return false;
  }
  else {
  document.frmEmail.action="processMailNeed.php"
  document.frmEmail.submit();
  return true;
  }
 
}

function checkForm2() {
  if (document.frmEmail.SName.value == "") {
  	 alert ("You forgot to enter your NAME!");
	 return false;
  }
  else if (document.frmEmail.SExpertise.value == "") {
  	 alert ("You forgot to enter your YOUR AREA OF EXPERTISE!");
  	 return false;
  }
  else if (document.frmEmail.SEmail.value == "") {
  	 alert ("You forgot to enter your EMAIL ADDRESS!");
  	 return false;
  }
  else if (document.frmEmail.SPhone.value == "") {
  	 alert ("You forgot to enter your PHONE NUMBER!");
  	 return false;
  }
  else if (document.frmEmail.STellUs.value == "") {
  	 alert ("You forgot to TELL US ABOUT YOURSELF!");
  	 return false;
  }
  else {
  document.frmEmail.action="processMailJob.php"
  document.frmEmail.submit();
  return true;
  }
 
}
