

	function CheckTrialForm(theForm) {
  		if (theForm.name.value == "")
  		{
    		alert("Please enter a value for the \"Name\" field.");
    		theForm.name.focus();
    		return (false);
  		}

		if (theForm.title.value == "")
  		{
    		alert("Please enter a value for the \"Title\" field.");
    		theForm.title.focus();
    		return (false);
  		}

		if (theForm.company.value == "")
  		{
    		alert("Please enter a value for the \"Company\" field.");
    		theForm.company.focus();
    		return (false);
  		}
		
		if (theForm.address.value == "")
  		{
    		alert("Please enter a value for the \"Address\" field.");
    		theForm.address.focus();
    		return (false);
  		} 	
		
				if (theForm.city.value == "")
  		{
    		alert("Please enter a value for the \"City\" field.");
    		theForm.city.focus();
    		return (false);
  		} 	
		
				if (theForm.state.value == "")
  		{
    		alert("Please enter a value for the \"State\" field.");
    		theForm.state.focus();
    		return (false);
  		} 	
		
				if (theForm.zip.value == "")
  		{
    		alert("Please enter a value for the \"Zip Code\" field.");
    		theForm.zip.focus();
    		return (false);
  		} 	
		
				if (theForm.telephone.value == "")
  		{
    		alert("Please enter a value for the \"Telephone\" field.");
    		theForm.telephone.focus();
    		return (false);
  		} 	
		
				if (theForm.email.value == "")
  		{
    		alert("Please enter a value for the \"E-mail Address\" field.");
    		theForm.email.focus();
    		return (false);
  		} 	
		
				if (theForm.timeline.value == "")
  		{
    		alert("Please enter a value for the \"Timeline for Purchasing\" field.");
    		theForm.timeline.focus();
    		return (false);
  		} 	
  	
  		return (true);
	}


