<!---- 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.company.value == "")

		{

		document.theform.company.focus();

	    alert("Please provide your company name.");

	    return false;

	    }

		

		if (document.theform.phone.value == "")

		{

		document.theform.phone.focus();

	    alert("Please provide your telephone number.");

	    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.industry.value == "")

		{

		document.theform.industry.focus();

	    alert("Please provide your industry.");

	    return false;

	    }

		

		if (document.theform.lead_source.value == "")

		{

		document.theform.lead_source.focus();

	    alert("Please tell us how you found us.");

	    return false;

	    }								

		

	}	

	  // -->			  

<!---- END FORM VALIDATION ---->	
