<!---- BEGIN FORM VALIDATION ---->	
	<!-- 
	function checkform(thisform)
	{
	
		if ( ( document.theform.services[0].checked == false )
    	&& ( document.theform.services[1].checked == false ) 
		&& ( document.theform.services[2].checked == false )
		&& ( document.theform.services[3].checked == false ) 
		)
    	{
        alert ( "Please select at least one type of service." );
        return false;
    	}	
	
		if (document.theform.Budget.value == "")
		{
		document.theform.Budget.focus();
	    alert("Please provide your budget for selected services");
	    return false;
	    }
		
		if (document.theform.Company.value == "")
		{
		document.theform.Company.focus();
	    alert("Please provide your company name.");
	    return false;
	    }
		
		if (document.theform.Name.value == "")
		{
		document.theform.Name.focus();
	    alert("Please provide your name.");
	    return false;
	    }	
		
		if (document.theform.eMail.value.indexOf("@") == -1 ||
	         (document.theform.eMail.value.indexOf('.') == -1))
	    {
		document.theform.eMail.focus();
	    alert("Please enter a valid e-mail address");
	    return false;
	    }
		
		if (document.theform.Phone.value == "")
		{
		document.theform.Phone.focus();
	    alert("Please provide your telephone number.");
	    return false;
	    }			
		
		if (document.theform.Address.value == "")
		{
		document.theform.Address.focus();
	    alert("Please provide your address.");
	    return false;
	    }	
		
		if (document.theform.City.value == "")
		{
		document.theform.City.focus();
	    alert("Please provide your city.");
	    return false;
	    }		
		
		if (document.theform.State.value == "")
		{
		document.theform.State.focus();
	    alert("Please provide your state.");
	    return false;
	    }	
		
		if (document.theform.Zip.value == "")
		{
		document.theform.Zip.focus();
	    alert("Please provide your zip code.");
	    return false;
	    }			
		
		if (document.theform.Description.value == "")
		{
		document.theform.Description.focus();
	    alert("Please provide a brief description of your company.");
	    return false;
	    }
		
		if ( ( document.theform.Site[0].checked == false )
    	&& ( document.theform.Site[1].checked == false ) 
		)
    	{
        alert ( "Do you have a web site?" );
         return false;
    	}				
		
		if (document.theform.HowFind.value == "")
		{
		document.theform.HowFind.focus();
	    alert("How did you find us?");
	    return false;
	    }	
		
		if(!String.IsNullOrEmpty(document.theform["hiddenForm"]))
  		IgnoreComment();							
		
	}	
	  // -->			  
<!---- END FORM VALIDATION ---->	