function FormSignup_Validator(theForm)
{
	if (theForm.productOfInterest.value == "")
    {
             alert("Please tell us which Product you are Interested In.");
            theForm.productOfInterest.focus();
            return (false);
    }
    if (theForm.firstName.value == "")
    {
             alert("Please enter your First Name.");
            theForm.firstName.focus();
            return (false);
    }
    if (theForm.lastName.value == "")
    {
             alert("Please enter your Last Name.");
            theForm.lastName.focus();
            return (false);
    }
    if (theForm.phoneAreaCode.value == "")
    {
             alert("Please enter your Phone Area Code.");
            theForm.phoneAreaCode.focus();
            return (false);
    }
    if (theForm.phonePrefix.value == "")
    {
             alert("Please enter your Phone Prefix.");
            theForm.phonePrefix.focus();
            return (false);
    }
    if (theForm.phoneNumber.value == "")
    {
             alert("Please enter your Phone Number.");
            theForm.phoneNumber.focus();
            return (false);
    }
    if (theForm.dateToContact.value == "")
    {
             alert("Please enter a Date/Time that we can Contact You.");
            theForm.dateToContact.focus();
            return (false);
    }
    if (theForm.timeZone.value == "")
    {
             alert("Please select a Time Zone.");
            theForm.timeZone.focus();
            return (false);
    }
    if (theForm.emailAddress.value == "")
    {
             alert("Please enter your Email Address.");
            theForm.emailAddress.focus();
            return (false);
    }
    if (theForm.reasonForInterest.value == "")
    {
             alert("Please tell us your Reason for Interest.");
            theForm.reasonForInterest.focus();
            return (false);
    }
 
    if (theForm.personWhoWillUseTheSystem.value == "")
    {
             alert("Please tell us Who will be using this System.");
            theForm.personWhoWillUseTheSystem.focus();
            return (false);
    }
 
return (true);
}
