	function check(shiptek_form)
	{			
			if(shiptek_form.company.value=='')
			{	
				alert("Please Enter your Company Name");
				shiptek_form.company.focus();
				return false;
			}
			
			if(shiptek_form.address.value=='')
			{
				
				alert("Please Enter your Address");
				shiptek_form.address.focus();
				return false;
			}
			if(shiptek_form.country.value==0)
			{	
				alert("Please select Your country");
				return false;
			}
			
			if(shiptek_form.email.value=='')
			{
				
				alert("Please Enter your email id");
				shiptek_form.email.focus();
				return false;
			}
			
			if(shiptek_form.name1.value=='' & shiptek_form.name2.value=='' & shiptek_form.name3.value=='')
			{
				
				alert("Please enter the name of any representative");
				shiptek_form.name1.focus();
				return false;
			}
					
	}	

	
	function checkCountry(shiptek_form)
	{
		if(shiptek_form.country.value==0)
			{	
				alert("Please select a country");
				shiptek_form.country.focus();
				return false;
			}
	}
	
	
	function emailvalidation(emailForm)
	{
		if(emailForm.email.value=='')
		{
			alert("Please Enter Your Emailid");
			emailForm.email.focus();
			return false;
		}
	}
