<!--
function validatorFAQ(theForm)
{

if (document.theForm.Subject.selectedIndex == 0) {
    alert('Please select a subject.');
				document.theForm.Subject.focus();
    return false;
  }
		
	 //if (document.theForm.Subject.selectedIndex == 8)
	    //document.theForm.action="empContact.asp";
					//else 
					//document.theForm.action="answers.asp";
	return true;

}

//-->
