//Urban Equities
function ValidateForm(theForm){
//LastName
if (theForm.applicant_last_name.value == ""){
    alert("Please enter your Last Name .");
    theForm.applicant_last_name.focus();
    return (false);
}
//FirstName
if (theForm.applicant_first_name.value == ""){
    alert("Please enter your First Name .");
    theForm.applicant_first_name.focus();
    return (false);
}
//ss no
if (theForm.applicant_ss_number1.value == ""){
    alert("Please enter your social security number.");
    theForm.applicant_ss_number1.focus();
    return (false);
}
//applicant_dob
if (theForm.applicant_dob.value == ""){
    alert("Please enter your date of birth.");
    theForm.applicant_dob.focus();
    return (false);
}
//contact_phone1
if (theForm.contact_phone1.value == ""){
    alert("Please enter area code for Contact Phone number.");
    theForm.contact_phone1.focus();
    return (false);
}
//contact_phone2
if (theForm.contact_phone2.value == ""){
    alert("Please enter Contact Phone number.");
    theForm.contact_phone2.focus();
    return (false);
}
//contact_phone3
if (theForm.contact_phone3.value == ""){
    alert("Please enter Contact Phone number.");
    theForm.contact_phone3.focus();
    return (false);
}
//work_phone1
if (theForm.work_phone1.value == ""){
    alert("Please enter area code for your work phone number.");
    theForm.work_phone1.focus();
    return (false);
}
//work_phone2
if (theForm.work_phone2.value == ""){
    alert("Please enter your work phone number.");
    theForm.work_phone2.focus();
    return (false);
}
//work_phone3
if (theForm.work_phone3.value == ""){
    alert("Please enter your work phone number.");
    theForm.work_phone3.focus();
    return (false);
}
//address
  if (theForm.current_street_address.value == ""){
    alert("Please enter your current street address.");
    theForm.current_street_address.focus();
    return (false);
}
//City
if (theForm.current_city.value == ""){
    alert("Please enter your current City or residence.");
    theForm.current_city.focus();
    return (false);
}
//county
if (theForm.current_county.value == ""){
    alert("Please enter your county of residence.");
    theForm.current_county.focus();
    return (false);
}
//state
if (theForm.current_state.value == ""){
    alert("Please enter your current state of residence.");
    theForm.current_state.focus();
    return (false);
}
//zip
if (theForm.current_zip_code.value == ""){
    alert("Please enter your zip code.");
    theForm.current_zip_code.focus();
    return (false);
}
//years
if (theForm.current_how_long_years.value == ""){
    alert("Please enter number of years at previous address.");
    theForm.current_how_long_years.focus();
    return (false);
}
//months
if (theForm.current_how_long_months.value == ""){
    alert("Please enter number of months at previous address.");
    theForm.current_how_long_months.focus();
    return (false);
}
//landlord
if (theForm.current_landlord_name_address.value == ""){
    alert("Please enter your current Landlord's name and address.");
    theForm.current_landlord_name_address.focus();
    return (false);
}
//landlord_phone3
if (theForm.current_landlord_phone3.value == ""){
    alert("Please enter your current landlord's phone number.");
    theForm.current_landlord_phone3.focus();
    return (false);
}
//prev address
if (theForm.previous_street_address.value == ""){
    alert("Please enter your previous street address.");
    theForm.previous_street_address.focus();
    return (false);
}
//prev city
if (theForm.previous_city.value == ""){
    alert("Please enter your previous city of residence.");
    theForm.previous_city.focus();
    return (false);
}
//prev county
if (theForm.previous_county.value == ""){
    alert("Please enter your previous county of residence.");
    theForm.previous_county.focus();
    return (false);
}
//prev state
if (theForm.previous_state.value == ""){
    alert("Please enter your previous state of residence.");
    theForm.previous_state.focus();
    return (false);
}
//prev zip
if (theForm.previous_zip_code.value == ""){
    alert("Please enter your prvious address zip code.");
    theForm.previous_zip_code.focus();
    return (false);
}
//prev years
if (theForm.previous_how_long_years.value == ""){
    alert("Please enter number of years at previous address.");
    theForm.previous_how_long_years.focus();
    return (false);
}
//prev months
if (theForm.previous_how_long_months.value == ""){
    alert("Please enter number of months at previous address.");
    theForm.previous_how_long_months.focus();
    return (false);
}
//prev landlord
if (theForm.previous_landlord_name_address.value == ""){
    alert("Please enter the name and address of your previous landlord.");
    theForm.previous_landlord_name_address.focus();
    return (false);
}
//prev landlord_phone3
if (theForm.prev_phone3.value == ""){
    alert("Please enter your previous landlord's phone number.");
    theForm.prev_landlord_phone3.focus();
    return (false);
}
//appl employer
if (theForm.current_employer.value == ""){
    alert("Please enter your current employer.");
    theForm.current_employer.focus();
    return (false);
}
//empl phone
if (theForm.current_employer_phone1.value == ""){
    alert("Please enter your employer's phone number.");
    theForm.current_employer_phone1.focus();
    return (false);
}
//empl_years
if (theForm.current_employer_how_long_years.value == ""){
    alert("Please enter the years you have been at current employer.");
    theForm.current_employer_how_long_years.focus();
    return (false);
}
//empl months
if (theForm.current_employer_how_long_months.value == ""){
    alert("Please enter the number of months you have been at your current employer.");
    theForm.current_employer_how_long_months.focus();
    return (false);
}
//income
if (theForm.current_income.value == ""){
    alert("Please enter your current income.");
    theForm.current_income.focus();
    return (false);
}
//bankr
if (!theForm.evicted_bankruptcy[0].checked & !theForm.evicted_bankruptcy[1].checked){
    alert("Please check whether you \nhave been evicted or filed bankruptcy.");
    return (false);
}
//felon
if (!theForm.felony_judgement[0].checked & !theForm.felony_judgement[1].checked){
    alert("Please check whether you have been convicted \nof a felony or had a judgement against you.");
    return (false);
}
}