	<!-- 
	function checkform(thisform)
	{
		if (document.ICForm.first_name.value == "")
		{
		document.ICForm.first_name.focus();
	    alert("Please provide your First Name.");
	    return false;
	    }
		
		if (document.ICForm.last_name.value == "")
		{
		document.ICForm.last_name.focus();
	    alert("Please provide your Last Name.");
	    return false;
	    }	
		
		if (document.ICForm.email.value.indexOf("@") == -1 ||
	       (document.ICForm.email.value.indexOf('.') == -1))
	    {
		document.ICForm.email.focus();
	    alert("Please enter a valid E-Mail address");
	    return false;
	    }				
		
		if (document.ICForm.company.value == "")
		{
		document.ICForm.company.focus();
	    alert("Please provide your Company Name.");
	    return false;
	    }			
		var country = document.getElementById("00N30000001ACli");
		if  (country.value == "")
			{
			alert("Please provide your Country.");
			return false;
			}						
			
	}
	// -->			  


