function verify(thisForm)
{
	if (thisForm.Name.value == ""){ window.alert("Please enter your Name."); return false; }
	if (thisForm.Email.value == ""){ window.alert("Please enter your email address so that we can reply to your enquiry."); return false; }
	if (thisForm.Email.value.indexOf("@") == -1) { window.alert("Please enter a valid email address so that we can reply to your enquiry."); return false; }
	if (thisForm.Email.value.indexOf(".") == -1) { window.alert("Please enter a valid email address so that we can reply to your enquiry."); return false; }
	if (thisForm.Region.value == "0") { window.alert("Please select your region."); return false; }
	if (thisForm.Region.value == 0) { window.alert("Please select your region."); return false; }
	return true;
}