function validateForm() { //v4.0
if ( document.employment.first.value == ""){
		alert("Please enter your First Name.")
		document.employment.first.focus()
		return false
	}
if ( document.employment.last.value == ""){
		alert("Please enter your Last Name.")
		document.employment.last.focus()
		return false
}
if (document.employment.address.value == "") {
    alert("Please enter your Address.")
    document.employment.address.focus()
    return false
}
if (document.employment.last.value == "") {
    alert("Please enter your Last Name.")
    document.employment.last.focus()
    return false
}
if ( document.employment.city.value == ""){
		alert("Please enter your City.")
		document.employment.city.focus()
		return false
}
if (document.employment.state.value == "BLANK") {
    alert("Please enter your state.")
    document.employment.state.focus()
    return false
}
if (document.employment.zip.value == "") {
    alert("Please enter your zip.")
    document.employment.zip.focus()
    return false
}
if (document.employment.area_prim.value == "") {
    alert("Please enter your Area Code.")
    document.employment.area_prim.focus()
    return false
}
if (document.employment.phone_prim.value == "") {
    alert("Please enter your Phone.")
    document.employment.phone_prim.focus()
    return false
}
if (document.employment.area_sec.value == "") {
    alert("Please enter your Area Code.")
    document.employment.area_sec.focus()
    return false
}
if (document.employment.phone_sec.value == "") {
    alert("Please enter your Phone.")
    document.employment.phone_sec.focus()
    return false
}
if ( document.employment.email.value == ""){
		alert("Please enter your email address.")
		document.employment.email.focus()
		return false
}
if (document.employment.emailverify.value != document.employment.email.value) {
    alert("Please verify your email address.")
    document.employment.emailverify.focus()
    return false
}
if (document.employment.position.value == "BLANK") {
    alert("Please enter position.")
    document.employment.position.focus()
    return false
}
if (document.employment.paysalary.value == "") {
    alert("Please enter your Desired Salary")
    document.employment.paysalary.focus()
    return false
}
if ( document.employment.hoursperwk.value == ""){
    alert("Please tell us how many hours per week you can work.")
		document.employment.hoursperwk.focus()
		return false
	}
if ( document.employment.startdate.value == ""){
    alert("Please tell us when you can start work")
		document.employment.startdate.focus()
		return false
}
if (document.employment.StoreLoc.value == "BLANK") {
    alert("Please tell us which location are you interested in")
    document.employment.StoreLoc.focus()
    return false
}
if ( document.employment.mon_timefrom.value == ""){
    alert("Please tell us the hours for Monday that you can work.")
		document.employment.mon_timefrom.focus()
		return false
	}
if ( document.employment.mon_timeto.value == ""){
    alert("Please tell us the hours for Monday that you can work")
		document.employment.mon_timeto.focus()
		return false
	}
if ( document.employment.tues_timefrom.value == ""){
    alert("Please tell us the hours for Tuesday that you can work")
		document.employment.tues_timefrom.focus()
		return false
	}	
if ( document.employment.tues_timeto.value == ""){
    alert("Please tell us the hours for Tuesday that you can work")
		document.employment.tues_timeto.focus()
		return false
	}		
if ( document.employment.wed_timefrom.value == ""){
    alert("Please tell us the hours for Wednesday that you can work")
		document.employment.wed_timefrom.focus()
		return false
	}		
if ( document.employment.wed_timeto.value == ""){
    alert("Please tell us the hours for Wednesday that you can work")
		document.employment.wed_timeto.focus()
		return false
	}	
if ( document.employment.thurs_timefrom.value == ""){
    alert("Please tell us the hours for Thursday that you can work")
		document.employment.thurs_timefrom.focus()
		return false
	}	
if ( document.employment.thurs_timeto.value == ""){
    alert("Please tell us the hours for Thursday that you can work")
		document.employment.thurs_timeto.focus()
		return false
	}	
if ( document.employment.fri_timefrom.value == ""){
    alert("Please tell us the hours for Friday that you can work")
		document.employment.fri_timefrom.focus()
		return false
	}	
if ( document.employment.fri_timeto.value == ""){
    alert("Please tell us the hours for Friday that you can work")
		document.employment.fri_timeto.focus()
		return false
	}	
if ( document.employment.sat_timefrom.value == ""){
    alert("Please tell us the hours for Saturday that you can work")
		document.employment.sat_timefrom.focus()
		return false
	}	
if ( document.employment.sat_timeto.value == ""){
    alert("Please tell us the hours for Saturday that you can work")
		document.employment.sat_timeto.focus()
		return false
	}	
if ( document.employment.sun_timefrom.value == ""){
    alert("Please tell us the hours for Sunday that you can work")
		document.employment.sun_timefrom.focus()
		return false
	}	
if ( document.employment.sun_timeto.value == ""){
    alert("Please tell us the hours for Sunday that you can work")
		document.employment.sun_timeto.focus()
		return false
	}		
}
//-->
