function checkData(theForm)
{  
	
	if (document.getElementById('Name').value == "")
	{
		alert("Please enter your Name !");
		document.getElementById('Name').focus();
		return false;
	}//End of if (theForm.Name.value == "")

	if (document.getElementById('company').value == "")
	{
		alert("Please enter your company name  !");
		document.getElementById('company').focus();
		
		return false;
	}//End of if (theForm.country.value == "")
	 
	 if (document.getElementById('tel').value == "")
	{
		alert("Please enter your contact number !");
		document.getElementById('tel').focus();
		
		return false;
	}//End of if (theForm.country.value == "")

		 if (document.getElementById('Email').value == "")
	{
		alert("Please enter your Email address !");
		document.getElementById('Email').focus();
		
		return false;
	}//End of if (theForm.country.value == "")
	
		 if (document.getElementById('address').value == "")
	{
		alert("Please enter your Company address !");
		document.getElementById('address').focus();
		
		return false;
	}//End of if (theForm.country.value == "")	
	
	if (document.getElementById('country').value == "0")
	{
		alert("Please select your country !");
		
		return false;
	}//End of if (theForm.country.value == "")	

	if (document.getElementById('enquirycontent').value == "")
	{
		alert("Please fill in enquiry !");
		document.getElementById('enquirycontent').focus();
		
		return false;
	}//End of if (theForm.country.value == "")	
	
}//End of function checkData(theForm)
