<!--
function MM_validateForm() {
	if (document.form1.Title.selectedIndex == 0){
		alert("Please select a title from the list provided.");
		return false;
	}
	if (document.form1.Name.value == ''){
		alert("Please supply your first name.");
		document.form1.Name.select();
		return false;
	}
	if (document.form1.Surname.value == ''){
		alert("Please supply your surname.");
		document.form1.Surname.select();
		return false;
	}
	if (document.form1.Email.value == ''){
		alert("Please supply your email.");
		document.form1.Email.select();
		return false;
	} else {
		var the_email = new String(document.form1.Email.value);
		var the_at = the_email.indexOf("@");
     	var the_dot = the_email.lastIndexOf(".");
		var a_space = the_email.indexOf(" ");
		if ((the_at != -1) && (the_at != 0) && (the_dot != -1) && (the_dot > the_at + 1) && (the_dot < the_email.length - 1) && (a_space == -1)) {
		} else {
			alert("Sorry, the email address you entered is invalid.");
			document.form1.Email.select();
			return false;
		}
	}
	if (document.form1.Telephone.value == ''){
		alert("Please supply your phone number.");
		document.form1.Telephone.select();
		return false;
	}
	if (isNaN(document.form1.Telephone.value)){
		alert("Please ensure your phone number does not contain any letters.");
		document.form1.Telephone.select();
		return false;
	}
	return true;
}
-->

