<!--//
	function CheckForm(oForm) {
		with (oForm) {
			//Hide all note elements before validating the form
			HideElements("note_");

			//Check that the required field has been entered
			if ( _1_Name.value == "" ) {
				ShowAndSet("note__1_Name","Please enter your Name.");
				_1_Name.focus();
				return false;
			}

			//Check that the required field has been entered
			if ( _15_Email_Address.value == "" ) {
				ShowAndSet("note__15_Email_Address","Please enter your email address.");
				_15_Email_Address.focus();
				return false;
			}

			//Check that the Email is a valid one
			if ( !isEmail(_15_Email_Address.value) ) {
				ShowAndSet("note__15_Email_Address","Please enter a valid Email Address.");
				_15_Email_Address.focus();
				return false;
			}

			//Check that the required field has been entered
			if ( _20_Comments.value == "" ) {
				ShowAndSet("note__20_Comments","Please enter your question/comments/enquiry.");
				_20_Comments.focus();
				return false;
			}
		}
		return true;
	}

	function Focus() {
		document.forms.Contact._1_Name.focus();
	}

	//Ensure that no matter what, the focus function is executed on the loading of the page
	if (window.addEventListener)
	window.addEventListener("load", Focus, false)
	else if (window.attachEvent)
	window.attachEvent("onload", Focus)
	else if (document.getElementById)
	window.onload=Focus
//-->