function validate_contact(frm) {

	if (!ValidateField(frm.contact_name, "text", "Please enter your name."))
		return false;

	if (!ValidateField(frm.contact_email, "email", "Please enter your Email Address\n- in the correct format."))
		return false;
					
	return true;
}

function validate_enquiry(frm) {

	if (!ValidateField(frm.contact_name, "text", "Please enter your name."))
		return false;

	if (!ValidateField(frm.contact_email, "email", "Please enter your Email Address\n- in the correct format."))
		return false;
					
	return true;
}

function validate_member(frm) {
	
	if (!ValidateField(frm.member_name, "text", "Please enter your name."))
		return false;
	
	if (!ValidateField(frm.member_email, "email", "Please enter your email in the correct format."))
		return false;
			
	return true;
}

function validate_prospectus(frm) {
	
	if (frm.agree.checked == false )
	{
	alert('Tick the box to agree to our terms & conditions to continue.');
	return false;
	}else
	return true;
			
	return true;
}




