// JavaScript Document
function checkcontactform(){
	if (document.con.Name.value==''){
		// something is wrong
		alert('You must Enter your name!');
		document.con.Name.focus();
		return false;
	}
	else if (document.con.CityState.value==''){
		// something is wrong
		alert('You must Enter City and State!');
		document.con.CityState.focus();
		return false;
	}
	else if (document.con.Email.value==''){
		// something is wrong
		alert('You must Enter your Email Address!');
		document.con.Email.focus();
		return false;
	}
	else if (document.con.Employer.value==''){
		// something is wrong
		alert('You must Enter your Employer\'s name!');
		document.con.Employer.focus();
		return false;
	}
	else if (document.con.EmployerPhone.value==''){
		// something is wrong
		alert('You must Enter your Employer\'s phone number!');
		document.con.EmployerPhone.focus();
		return false;
	}
	else if (document.con.streetaddress.value==''){
		// something is wrong
		alert('You must Enter the numeric portion of your street address!');
		document.con.streetaddress.focus();
		return false;
	}
	else if (document.con.CallbackNumber.value==''){
		// something is wrong
		alert('You must Enter your Callback Number!');
		document.con.CallbackNumber.focus();
		return false;
	}
	else if (document.con.agree.checked == false ){        
		alert ( "You must agree that you have a clear understanding of our expectations and agree with our guidelines and disclaimers by Checking the checkbox" );
		document.con.agree.checked.focus();
        return false;
	}
		
	return true;
}
