/*	-------------------------------------------------
	FUNCTIONS
	-------------------------------------------------	*/
	function validateContactForm() {
		var boolErrorFound			= false;
		var strErrorText			= "";
		
		if ($("#strContactName").val().length == 0) {
			boolErrorFound			= true;
			strErrorText			+= "- Please enter your name.\n";
		}
		if ($("#strContactPhone").val().length < 6) {
			boolErrorFound			= true;
			strErrorText			+= "- Please enter your phone number.\n";
		}
		if ($("#strContactEmail").val().length == 0) {
			boolErrorFound			= true;
			strErrorText			+= "- Please enter your e-mail address.\n";
		} else if (($("#strContactEmail").val().indexOf("@") == -1) || ($("#strContactEmail").val().indexOf(".") == -1)) {
			boolErrorFound			= true;
			strErrorText			+= "- Please enter a valid e-mail address.\n";
		}
		if ($("#strContactReferral").val().length < 6) {
			boolErrorFound			= true;
			strErrorText			+= "- Please enter how you heard about us.\n";
		}
		if ($("#txtContactComments").val().length < 6) {
			boolErrorFound			= true;
			strErrorText			+= "- Please enter your reason for contacting us.\n";
		}
		
		if (boolErrorFound) {
			alert(STR_STANDARD_ERROR + strErrorText);
			return false;
		} else {
			return true;
		}
	}

