<!-- Begin
function validateForm1(JobListing){
if(""==document.forms.JobListing.FirstNameJob.value){
alert("Please enter your First Name.");
document.forms.JobListing.FirstNameJob.focus();
return false;
}

if(""==document.forms.JobListing.LastNameJob.value){
alert("Please enter your Last Name.");
document.forms.JobListing.LastNameJob.focus();
return false;
}

if(""==document.forms.JobListing.PhoneJob.value){
alert("Please enter your Phone Number.");
document.forms.JobListing.PhoneJob.focus();
return false;
}

if(""==document.forms.JobListing.CityJob.value){
alert("Please enter your City.");
document.forms.JobListing.CityJob.focus();
return false;
}
if(""==document.forms.JobListing.DescriptionJob.value){
alert("Please enter your Description.");
document.forms.JobListing.DescriptionJob.focus();
return false;
}
}
//  End -->


