function makealert(theform)
{
  var totalstrerrors = "";
  
  if (validate(theform.FirstName.value,"req")) {
	totalstrerrors += "Please Enter your First Name\n";
  }
  
  if (validate(theform.LastName.value,"req")) {
	totalstrerrors += "Please Enter your Last Name\n";
  }

  if (validate(theform.Present_Address.value,"req")) {
	totalstrerrors += "Please Enter your Present Address\n";
  }

  if (validate(theform.Present_City.value,"req")) {
	totalstrerrors += "Please Enter your Present City\n";
  }

  if (validate(theform.Present_State.value,"req")) {
	totalstrerrors += "Please Enter your Present State\n";
  }

  if (validate(theform.Present_Zip.value,"req")) {
	totalstrerrors += "Please Enter your Present Zip\n";
  }

  if (validate(theform.Previous_Address.value,"req")) {
	totalstrerrors += "Please Enter your Previous Address\n";
  }

  if (validate(theform.Previous_City.value,"req")) {
	totalstrerrors += "Please Enter your Previous City\n";
  }

  if (validate(theform.Previous_State.value,"req")) {
	totalstrerrors += "Please Enter your Previous State\n";
  }

  if (validate(theform.Previous_Zip.value,"req")) {
	totalstrerrors += "Please Enter your Previous Zip\n";
  }
  
  if (validate(theform.Phone.value,"req")) {
	totalstrerrors += "Please Enter your Telephone #\n";
  } 
  
  if (!theform.USEmploymentRight[0].checked  && !theform.USEmploymentRight[1].checked) {
	totalstrerrors += "Please Select whether or not you have the Legal Right to Work in the U.S.\n";
  }
  
  if (!theform.Over18[0].checked  && !theform.Over18[1].checked) {
	totalstrerrors += "Please Select whether or not you are Over 18\n";
  }
  
  if (validate(theform.SSN.value,"req")) {
	totalstrerrors += "Please Enter your Social Security #\n";
  }
  
  if (!theform.WorkedforCompany[0].checked  && !theform.WorkedforCompany[1].checked) {
	totalstrerrors += "Please Select whether or not you have Worked for this Company before\n";
  }
  
  if (!theform.CurrentlyEmployed[0].checked  && !theform.CurrentlyEmployed[1].checked) {
	totalstrerrors += "Please Select whether or not you are Currently Employed\n";
  }
  
  if (validate(theform.PositionAppliedFor.value,"req")) {
	totalstrerrors += "Please Enter the Position you are Applying for\n";
  }
  
  if (validate(theform.HighSchool_NameandCity.value,"req")) {
	totalstrerrors += "Please Enter the Name and City of your High School\n";
  }
  
  if (validate(theform.E1_CompanyName.value,"req")) {
	totalstrerrors += "Please Enter the Company Name of your Previous Employer\n";
  }
  
  if (validate(theform.E1_City.value,"req")) {
	totalstrerrors += "Please Enter the City of your Previous Employer\n";
  }
  
  if (validate(theform.E1_State.value,"req")) {
	totalstrerrors += "Please Enter the State of your Previous Employer\n";
  }
  
  if (validate(theform.E1_Phone.value,"req")) {
	totalstrerrors += "Please Enter the Phone # of your Previous Employer\n";
  }
  
  if (validate(theform.E1_SupervisorName.value,"req")) {
	totalstrerrors += "Please Enter the Name of your Supervisor from your Previous Employer\n";
  }
  
  if (validate(theform.E1_WorkedfromDate.value,"req")) {
	totalstrerrors += "Please Enter the Date you Started at your Previous Employer\n";
  }
  
  if (validate(theform.E1_WorkedtoDate.value,"req")) {
	totalstrerrors += "Please Enter the Date you left, or 'current', at your Previous Employer\n";
  }
  
  if (validate(theform.E1_PositionsHeld.value,"req")) {
	totalstrerrors += "Please Enter the Positions you Held at your Previous Employer\n";
  }
  
  if (validate(theform.E1_StartingPay.value,"req")) {
	totalstrerrors += "Please Enter the Starting Pay at your Previous Employer\n";
  }
  
  if (validate(theform.E1_EndingPay.value,"req")) {
	totalstrerrors += "Please Enter the Ending Pay at your Previous Employer\n";
  }
  
  if (validate(theform.E1_HoursperWeek.value,"req")) {
	totalstrerrors += "Please Enter the Hours per Week you worked at your Previous Employer\n";
  }
  
  if (validate(theform.R1_Name.value,"req")) {
	totalstrerrors += "Please Enter the Name of your Work Reference\n";
  }
  
  if (validate(theform.R1_Company.value,"req")) {
	totalstrerrors += "Please Enter the Company Name of your Work Reference\n";
  }
  
  if (validate(theform.R1_RelationshipandTitle.value,"req")) {
	totalstrerrors += "Please Enter the Relationship and Title of your Work Reference\n";
  }
  
  if (validate(theform.R1_YearsKnown.value,"req")) {
	totalstrerrors += "Please Enter the # of Years you've known your Work Reference\n";
  }
  
  if (validate(theform.R1_City.value,"req")) {
	totalstrerrors += "Please Enter the City of your Work Reference\n";
  }
  
  if (validate(theform.R1_State.value,"req")) {
	totalstrerrors += "Please Enter the State of your Work Reference\n";
  }
  
  if (validate(theform.R1_HomePhone.value,"req")) {
	totalstrerrors += "Please Enter the Home Phone # of your Work Reference\n";
  }
  
  if (validate(theform.R1_WorkPhone.value,"req")) {
	totalstrerrors += "Please Enter the Work Phone # of your Work Reference\n";
  }
  
  if (theform.IAgree.checked != true) {
	totalstrerrors += "Please Read and Agree to our Terms and Conditions\n";
  }
  
  if (totalstrerrors == "") {
    theform.Submit.disabled = true;
    return true;
  } else {
    alert(totalstrerrors);
    theform.Submit.disabled = false;
    return false;
  }
}
