// Copyright (c) 2005 Martin P. Cadirola
// Reproduction prohibited without written authorization
// Thursday, March 10, 2005 

<!--

function validate_me(){

	missinginfo = "";
	
	if(document.the_form.staffing_needs.value.length <= "37") {
		missinginfo += "\n     -  Staffing Needs";
	}
	
	if (document.the_form.first_name.value == "") {
		missinginfo += "\n     -  First Name";
	}
	
	if (document.the_form.last_name.value == "") {
		missinginfo += "\n     -  Last Name";
	}
	
	if (document.the_form.company.value == "") {
		missinginfo += "\n     -  Company";
	}

	if (document.the_form.phone.value == "") {
		missinginfo += "\n     -  Phone";
	}

	if (document.the_form.email.value == "") {
		missinginfo += "\n     -  E-mail";
	}

	if (document.the_form.city.value == "") {
		missinginfo += "\n     -  City";
	}

	if (document.the_form.state.value == "") {
		missinginfo += "\n     -  State";
	}

	if (document.the_form.zip.value == "") {
		missinginfo += "\n     -  Zip";
	}

	if(document.the_form.industry.value == "industry") {
		missinginfo += "\n     -  Industry";
	}

	if(document.the_form.title.value == "") {
		missinginfo += "\n     -  Position Title";
	}

	if(document.the_form.rate.value == "") {
		missinginfo += "\n     -  Rate/Salary Range";
	}

	if(document.the_form.employees_required.value == "") {
		missinginfo += "\n     -  Employees Required";
	}

	if(document.the_form.placement_type.value == "") {
		missinginfo += "\n     -  Placement Type";
	}

	if(document.the_form.employment_units.value == "" || document.the_form.employment_duration.value == "") {
		missinginfo += "\n     -  Employment Duration";
	}


	
	if (missinginfo != "") {
		missinginfo ="_________________________________________\n" + "All Fields are Required - Please Complete all Fields:\n" + missinginfo + "\n_________________________________________" + "\nPlease re-enter and submit again!";
		alert(missinginfo);
		return false;
		}
		else 
		
		return true;


}
	


//-->