function Validate(theForm) {
	if (theForm['dynaProperty(firstName)'].value == "")
	{
		alert("Please Enter Your First Name");
		theForm['dynaProperty(firstName)'].focus()
		return false;
	}

	if (theForm['dynaProperty(surname)'].value == "")
	{
		alert("Please Enter Your Last Name");
		theForm['dynaProperty(surname)'].focus()
		return false;
	}

	if (theForm['dynaProperty(company)'].value == "")
	{
	   	alert("Please Enter Your Company Name");
		theForm['dynaProperty(company)'].focus()
		return false;
	}

	if (theForm['dynaProperty(country)'].value == "")
	{
	   	alert("Please Enter Your Country");
		theForm['dynaProperty(country)'].focus()
		return false;
	}
	
	if (theForm['dynaProperty(email)'].value != "")
	{
		if(emailCheck(theForm['dynaProperty(email)'].value) == false)
		{
				alert("Please Enter a Valid Email Address");
				theForm['dynaProperty(email)'].focus()
				return false;
		}
	}
	else
	{
			alert("Please Enter Your Email Address");
			theForm['dynaProperty(email)'].focus()
			return false;
	}
	
	if (theForm['dynaProperty(hear)'].value == "")
	{
	 	alert("Please Select How You Heard About Us");
		theForm['dynaProperty(hear)'].focus()
		return false;
	}
	


	return true;
}
