// JavaScript Document

function FormIsReady(){

	if (document.aContact.fName.value==""){
	document.aContact.fName.focus();
	document.getElementById('formfName').innerHTML="<font style='font-size:12px; color:#990000; font-style:italic'>Enter your first name!</font>";
	document.getElementById('formfName').style.visibility='Visible';
	return false;
	}
	if (document.aContact.lName.value==""){
	document.aContact.lName.focus();
	document.getElementById('formlName').innerHTML="<font style='font-size:12px; color:#990000; font-style:italic'>Enter your last name!</font>";
	document.getElementById('formlName').style.visibility='Visible';
	return false;
	}

	var email = document.getElementById('emailAddress');
	var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
		if (!filter.test(email.value)) {
			document.aContact.emailAddress.focus();
			document.getElementById('formemail').innerHTML="<font style='font-size:12px; color:#990000; font-style:italic'>Enter a valid email address!</font>";
			document.getElementById('formemail').style.visibility='Visible';
			return false;
			}
	//alert("going to submit");	
	document.aContact.submit();
}