<!---- BEGIN FORM VALIDATION ---->	
	<!-- 
	function checkform(thisform)
	{
		if (document.theform.first_name.value == "")
		{
		document.theform.first_name.focus();
	    alert("Please provide your first name.");
	    return false;
	    }
		
		if (document.theform.last_name.value == "")
		{
		document.theform.last_name.focus();
	    alert("Please provide your last name.");
	    return false;
	    }	
		
		if (document.theform.title.value == "")
		{
		document.theform.title.focus();
	    alert("Please provide your title.");
	    return false;
	    }	
		
		if (document.theform.company.value == "")
		{
		document.theform.company.focus();
	    alert("Please provide your company name.");
	    return false;
	    }			
		
		if (document.theform.city.value == "")
		{
		document.theform.city.focus();
	    alert("Please provide your city name.");
	    return false;
	    }	
		
		if (document.theform.state.value == "")
		{
		document.theform.state.focus();
	    alert("Please provide your state/province.");
	    return false;
	    }	
		
		if (document.theform.country.value == "")
		{
		document.theform.country.focus();
	    alert("Please provide your country.");
	    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;
	    }			
		
		
									
		
	}	
	  // -->			  
<!---- END FORM VALIDATION ---->	
