// JavaScript Document
<!--
function validate() {
	var error_string = "";
	if (window.document.Contact_Form.name.value == "") {
		error_string += "Need your First Name:\n";
		}
	//if (window.document.Contact_Form.lname.value == "") {
	//	error_string += "Need your Last Name:\n";
	//	}
	if (window.document.Contact_Form.telephone.value == "") {
		error_string += "Incomplete Contact Number\n";
		}
	/*if (window.document.Contact_Form.facebook.value == "") {
		error_string += "Incomplete facebook Address\n";
		}*/
	if (window.document.Contact_Form.email.value == "") {
		error_string += "Email Address Required\n";
		}
	if (error_string == "") {
		return true;
		} else {
		error_string = "* Please Fill Required Fields: \n\n" + error_string;
		alert(error_string);
		return false;
		}
	}
-->
