//<![CDATA[
<!-- Included from events.php via PHP variable $JScriptLocal and Header1.php -->
<!-- Copyright© Adam's Computing® . Web designer: Hal Adam -->
<!-- NO, this web page did NOT evolve over eons of time from -->
<!-- some suposed primodial alphabet soup, it took a designer.  :) -->
<!-- Comment out for Browsers which do NOT support Scripting

function goFirst() {
    YouthEvents.recordset.MoveFirst();
}
function goLast() {
    YouthEvents.recordset.MoveLast();
}
function goBackOne() {
    YouthEvents.recordset.MovePrevious();
        if (YouthEvents.recordset.BOF) {
            YouthEvents.recordset.MoveFirst();
        }
}
function goForwardOne() {
    YouthEvents.recordset.MoveNext();
        if (YouthEvents.recordset.EOF) {
            YouthEvents.recordset.MoveLast();
        }
}

// End of JScript commenting for Non-Scripting enabled Browsers -->
//]]>