function CheckForm() {
	var email = document.frmContact.emailadd.value;
	if (!CheckEmail(email) && email.length>0) {
		alert("Please enter a valid email address.");
		document.frmContact.emailadd.focus();
	} else if (document.frmContact.firstname.value=="") {
		alert("Please enter your first name.");
		document.frmContact.firstname.focus();
	} else if (document.frmContact.surname.value=="") {
		alert("Please enter your surname.");
		document.frmContact.surname.focus();
	} else if (document.frmContact.birthday_day.value=="" || document.frmContact.birthday_month.value=="" || document.frmContact.birthday_year.value=="") {
		alert("Please enter your date of birth.");
		document.frmContact.birthday_day.focus();
	} else if (document.frmContact.mobile_tel.value=="") {
		alert("Please enter your mobile number.");
		document.frmContact.mobile_tel.focus();
	} else if (document.frmContact.emailadd.value=="") {
		alert("Please enter your email address.");
		document.frmContact.emailadd.focus();
	} else {
		document.frmContact.email.value=email;
		document.frmContact.submit()
	}
}

function ClearEnquiry() {
	if (document.frmContact.enquiry.value=="Enter your order details here...") {
		document.frmContact.enquiry.value=""
	}
}
