<!--
//outputs the jump menu form ONLY if the user's browser is JavaScript enabled.
document.writeln('<form name="calArchives">');
document.writeln('<select name="jumpmenu">');
document.writeln('<option value="#" selected>Past events...</option>');
document.writeln('<option value="/learningplace/html/calendar-2009.html">2009</option>');
document.writeln('<option value="/learningplace/html/calendar-2008.html">2008</option>');
document.writeln('<option value="/learningplace/html/calendar-2007.html">2007</option>');
document.writeln('</select>');
document.writeln('<input type="button" value="Go"');
document.writeln('         onClick="location.href=document.calArchives.jumpmenu.options[document.calArchives.jumpmenu.options.selectedIndex].value">');
document.writeln('</form>');
//-->