function ValidLeadForm() {
	var F=document.FreeQuotes;

	if (F.FirstName.value=="" || F.LastName.value=="") {
		alert("Please enter your first and last name.");
		F.FirstName.focus();
		return false;
	}
	if (F.Email.value=="") {
		alert("Please enter your email address.");
		F.Email.focus();
		return false;
	}
	if (F.Email.value.indexOf(".")==-1 || F.Email.value.indexOf("@")==-1) {
		alert("Please enter a valid email address.");
		F.Email.focus();
		return false;
	}
	if (F.WorkPhone.value=="") {
		alert("Please enter a phone number where you can be reached.");
		F.WorkPhone.focus();
		return false;
	}
	
	if (F.FromZip.value=="") {
		alert("Please enter the zip code that you'll be moving from.");
		F.FromZip.focus();
		return false;
	}
	if (F.ToCity.value=="") {
		alert("Please enter the city that you'll be moving to.");
		F.ToCity.focus();
		return false;
	}
	if (F.ToZip.value=="") {
		alert("Please enter the zip code that you'll be moving to.");
		F.ToZip.focus();
		return false;
	}
	if (F.ToState.selectedIndex==0) {
		alert("Please select the STate your planning on moving.");
		F.ToState.focus();
		return false;
	}
	
	return true;
}
