
function processData(form) {
	
	
	if (form.AgencyID.value == "") {
			alert("You must select the Service that is requiring support")
					form.AgencyID.focus()
							return false}

	if (form.AgencyID.value == "9999") {
	if (form.agencyName.value == "") {
			alert("You must enter a name for the new Service")
					form.agencyName.focus()
							return false}
}



if (form.requestDescription.value == "") {
			alert("You must enter a brief description of the support requirements of the Service!")
					form.requestDescription.focus()
							return false}

	if (form.RequestSourceID.value == "") {
			alert("You must answer the question regarding the method used to make the request")
					form.RequestSourceID.focus()
							return false}

	if (form.PriorityGroupID.value == "") {
			alert("You must answer the question regarding the priority group targetted by the request")
					form.PriorityGroupID.focus()
							return false}

}

