<!--
function validateRequired() {
	if (document.frmInfoReq.Name.value == "") {
		alert("ERROR: You must enter your name before proceeding.");
		document.frmInfoReq.Name.focus();
		document.getElementById('capName').style.color = 'red';
		document.getElementById('capAddress1').style.color = 'black';
		document.getElementById('capCity').style.color = 'black';
		document.getElementById('capState').style.color = 'black';
		document.getElementById('capZip').style.color = 'black';
		document.getElementById('capTelephone').style.color = 'black';
		document.getElementById('capfrom').style.color = 'black';
		document.getElementById('capExpected_Accomplishments').style.color = 'black';
		return false;
	}
	
	if (document.frmInfoReq.Address1.value == "") {
		alert("ERROR: You must enter your street address before proceeding.");
		document.frmInfoReq.Address1.focus();
		document.getElementById('capName').style.color = 'black';
		document.getElementById('capAddress1').style.color = 'red';
		document.getElementById('capCity').style.color = 'black';
		document.getElementById('capState').style.color = 'black';
		document.getElementById('capZip').style.color = 'black';
		document.getElementById('capTelephone').style.color = 'black';
		document.getElementById('capfrom').style.color = 'black';
		document.getElementById('capExpected_Accomplishments').style.color = 'black';
		return false;
	}
	
	if (document.frmInfoReq.City.value == "") {
		alert("ERROR: You must enter your city before proceeding.");
		document.frmInfoReq.City.focus();
		document.getElementById('capName').style.color = 'black';
		document.getElementById('capAddress1').style.color = 'black';
		document.getElementById('capCity').style.color = 'red';
		document.getElementById('capState').style.color = 'black';
		document.getElementById('capZip').style.color = 'black';
		document.getElementById('capTelephone').style.color = 'black';
		document.getElementById('capfrom').style.color = 'black';
		document.getElementById('capExpected_Accomplishments').style.color = 'black';
		return false;
	}	
	
	if (document.frmInfoReq.State.value == "") {
		alert("ERROR: You must enter your state before proceeding.");
		document.frmInfoReq.State.focus();
		document.getElementById('capName').style.color = 'black';
		document.getElementById('capAddress1').style.color = 'black';
		document.getElementById('capCity').style.color = 'black';
		document.getElementById('capState').style.color = 'red';
		document.getElementById('capZip').style.color = 'black';
		document.getElementById('capTelephone').style.color = 'black';
		document.getElementById('capfrom').style.color = 'black';
		document.getElementById('capExpected_Accomplishments').style.color = 'black';
		return false;
	}
	
	if (document.frmInfoReq.Zip.value == "") {
		alert("ERROR: You must enter your zip code before proceeding.");
		document.frmInfoReq.Zip.focus();
		document.getElementById('capName').style.color = 'black';
		document.getElementById('capAddress1').style.color = 'black';
		document.getElementById('capCity').style.color = 'black';
		document.getElementById('capState').style.color = 'black';
		document.getElementById('capZip').style.color = 'red';
		document.getElementById('capTelephone').style.color = 'black';
		document.getElementById('capfrom').style.color = 'black';
		document.getElementById('capExpected_Accomplishments').style.color = 'black';
		return false;
	}
	
	if (document.frmInfoReq.Telephone.value == "") {
		alert("ERROR: You must enter your telephone number before proceeding.");
		document.frmInfoReq.Telephone.focus();
		document.getElementById('capName').style.color = 'black';
		document.getElementById('capAddress1').style.color = 'black';
		document.getElementById('capCity').style.color = 'black';
		document.getElementById('capState').style.color = 'black';
		document.getElementById('capZip').style.color = 'black';
		document.getElementById('capTelephone').style.color = 'red';
		document.getElementById('capfrom').style.color = 'black';
		document.getElementById('capExpected_Accomplishments').style.color = 'black';
		return false;
	}
	
	if (document.frmInfoReq.from.value == "") {
		alert("ERROR: You must enter your e-mail address before proceeding.");
		document.frmInfoReq.from.focus();
		document.getElementById('capName').style.color = 'black';
		document.getElementById('capAddress1').style.color = 'black';
		document.getElementById('capCity').style.color = 'black';
		document.getElementById('capState').style.color = 'black';
		document.getElementById('capZip').style.color = 'black';
		document.getElementById('capTelephone').style.color = 'black';
		document.getElementById('capfrom').style.color = 'red';
		document.getElementById('capExpected_Accomplishments').style.color = 'black';
		return false;
	}
	
	if (document.frmInfoReq.Expected_Accomplishments.value == "") {
		alert("ERROR: You must enter your expected accomplishments before proceeding.");
		document.frmInfoReq.Expected_Accomplishments.focus();
		document.getElementById('capName').style.color = 'black';
		document.getElementById('capAddress1').style.color = 'black';
		document.getElementById('capCity').style.color = 'black';
		document.getElementById('capState').style.color = 'black';
		document.getElementById('capZip').style.color = 'black';
		document.getElementById('capTelephone').style.color = 'black';
		document.getElementById('capfrom').style.color = 'black';
		document.getElementById('capExpected_Accomplishments').style.color = 'red';
		return false;
	}
	
	return true;
}
//-->
