function checkIncidentForm(theForm) {
	var why = "";
    why += isEmpty(theForm.reporting_person.value, "REPORTING PESRSON");
    if (why != "") {
       alert(why);
		theForm.reporting_person.focus();
       return false;
    }
    why += isEmpty(theForm.date_reported.value, "DATE REPORTED");
    if (why != "") {
       alert(why);
		theForm.date_reported.focus();
       return false;
    }
	why += checkDropdown(theForm.report_type.selectedIndex, "REPORT TYPE");
    if (why != "") {
       alert(why);
		theForm.report_type.focus();
       return false;
    }
	why += checkDropdown(theForm.concerns.selectedIndex, "THIS REPORT CONCERNS");
    if (why != "") {
       alert(why);
		theForm.concerns.focus();
       return false;
    }
	why += checkDropdown(theForm.op_safety_issue.selectedIndex, "THIS REPORT CONCERNS");
    if (why != "") {
       alert(why);
		theForm.op_safety_issue.focus();
       return false;
    }
	why += isEmpty(theForm.incident_details.value, "INCIDENT DETAILS");
    if (why != "") {
       alert(why);
		theForm.incident_details.focus();
       return false;
    }

return true;
}

