function validateCACAppForm() {
	frm=document.cacAppForm;
	
	if (frm.Name.value=="") {
		alert('Please enter the Name.');
	} else if (frm.Address.value=="") {
		alert('Please enter the Address.');
	} else if (frm.CityState.value=="") {
		alert('Please enter the City and State.');
	} else if (frm.Zip.value=="") {
		alert('Please enter the Zip code.');
	} else if (frm.Neighborhood.value=="") {
		alert('Please enter the Neighborhood.');
	} else if (frm.HomePhone.value=="") {
		alert('Please enter the Home Phone.');
	} else if (frm.StatementName.value=="") {
		alert('Please enter the Statement Name at the bottom of the form.');
	} else if (frm.StatementDate.value=="") {
		alert('Please enter the Statement Date at the bottom of the form.');
	} else {
		return true;
	}
	return false;
}

