function checksearch(theform) {
	if(theform.timelimit.checked == true) {
		if(theform.start2hour.value <= theform.start1hour.value) {
			alert("The start times must be a range with the earlier time on the left.");
			return false;
		} else {
			return true;
		}
	}
}
