    function ClearNamedSubjectCheckedStatus(F)                     // 'named' means the 'all' category is not included
        {
        for( var i = 1; i < F.chkSubject.length; ++i )             // note that initial value of index must be 1, here
            F.chkSubject[i].checked = false;
        return;
        }

    function ClearAllSubjectCheckedStatus(F)
        {
        F.chkSubject[0].checked = false;
        return;
        }
    
	/*Search Function*/
	function search() {
    	document.frmEventSearch.submit();
	}
