function checkData(theForm)
{  
	if (theForm.Name.value == "")
	{
		alert("Please enter your name.");
		theForm.Name.focus();
		return false;
	}//End of if (theForm.Name.value == "")

	if (theForm.country.value == "")
	{
		alert("Please select your country.");
		theForm.country.focus();
		return false;
	}//End of if (theForm.country.value == "")
	 
	var sTemp = theForm.Email.value;
	sTemp += theForm.tel.value;
	sTemp += theForm.fax.value;
	if (sTemp == "")
	{
		alert("Please enter either your email address, tel number or fax number.");
		theForm.Email.focus();
		return false;
	}//End of if (sTemp == "")

	 
	 return (true);
}//End of function checkData(theForm)

