function checkErmail(form) {
	if (!_JS_emailCheck(form.email_address)) {
		alert("Sorry, the email address you entered is wrong. A valid email address should contain '@' followed by a .com/co.uk/net etc. Example: yourname@youraddress.com");
		form.email_address.focus();
		return false;		
	}
}



