<!--

function checkForm(){
			formRef = document.contactForm;

			if ( formRef.lastName.value.length <  2 ){
				alert('Please enter your name in the "Name" field.');
				formRef.lastName.focus();
				return;
			}
			if ( formRef.fromemail.value.length <  2 ){
				alert('Please enter an email address in the "Email Address " field.');
				formRef.fromemail.focus();
				return;
			}
			formRef.submit();
		}

function confirmation() {
	var answer = confirm("ALL INFORMATION AND MATERIALS YOU ARE ABOUT TO VIEW ARE COPYRIGHTED AND MAY NOT BE PUBLISHED, BROADCAST, REWRITTEN OR REDISTRIBUTED WITHOUT PERMISSION. \n(Copyright \u00a9 2007 Coleman Brown Architects, APC) \nBy clicking OK, you agree NOT to copy ANY of the information found within. Violators will be prosecuted to the fullest extent of the law.")
	if (answer){
		window.location = "page_4.php";
	}
	else{
		
	}
}
//-->