<!--
function ValfrmCourseFinder()
{
if (document.frmCourseFinder.txtCourseLocation.value=="")
{
	alert("Please select your preferred course location");
	document.frmCourseFinder.txtCourseLocation.focus();
	document.frmCourseFinder.txtCourseLocation.style.borderColor="#9fff82";
	return (false);
}
if (document.frmCourseFinder.txtCourseDate.value=="")
{
	alert("Please select your preferred course date");
	document.frmCourseFinder.txtCourseDate.focus();
	document.frmCourseFinder.txtCourseDate.style.borderColor="#9fff82";
	return (false);
}
if (document.frmCourseFinder.txtCourseLevel.value=="")
{
	alert("Please select your preferred course level");
	document.frmCourseFinder.txtCourseLevel.focus();
	document.frmCourseFinder.txtCourseLevel.style.borderColor="#9fff82";
	return (false);
}
if (document.frmCourseFinder.txtCoursePace.value=="")
{
	alert("Please select your preferred course pace");
	document.frmCourseFinder.txtCoursePace.focus();
	document.frmCourseFinder.txtCoursePace.style.borderColor="#9fff82";
	return (false);
}
return (true);
}
//-->
