// JavaScript Document
<!--
function validate() {
	var error_string = "";
	if (window.document.Contact_Form.msg.value == "") {
		error_string += "Please leave a message.\n";
		}
	if (window.document.Contact_Form.name.value == "") {
		error_string += "From Who?\n";
		}
	if (window.document.Contact_Form.tel.value == "") {
		error_string += "What's your Telephone Number?\n";
		}
	if (window.document.Contact_Form.mail.value == "") {
		error_string += "PLease enter an Email address...\n";
		}
	if (error_string == "") {
		return true;
		} else {
		error_string = "* Please Provide Required Fields: \n\n" + error_string;
		alert(error_string);
		return false;
		}
	}
-->
