function validateForm(theForm)
{
	if (theForm.frmFrom.value == "")
	{
	alert("RUN ARMAGH: Please enter where you are from");
	theForm.frmFrom.focus();
	result = false;
	return result;
	}

	if (theForm.frmRegistration.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmRegistration.focus();
	result = false;
	return result;
	}

	if (theForm.frmStart.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmStart.focus();
	result = false;
	return result;
	}

	if (theForm.frmRoute.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmRoute.focus();
	result = false;
	return result;
	}

	if (theForm.frmWaterStop.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmWaterStop.focus();
	result = false;
	return result;
	}

	if (theForm.frmCourseSignage.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmCourseSignage.focus();
	result = false;
	return result;
	}

	if (theForm.frmMarshallPolice.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmMarshallPolice.focus();
	result = false;
	return result;
	}

	if (theForm.frmFinish.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmFinish.focus();
	result = false;
	return result;
	}

	if (theForm.frmGoodyBag.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmGoodyBag.focus();
	result = false;
	return result;
	}

	if (theForm.frmResults.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmResults.focus();
	result = false;
	return result;
	}

	if (theForm.frmOverallScore.value == "xxx")
	{
	alert("RUN ARMAGH: Please select an option from the list");
	theForm.frmOverallScore.focus();
	result = false;
	return result;
	}


//	ALL GOOD IF YOU MAKE IT THIS FAR

return true;
}
