<!--
//outputs the jump menu form ONLY if the user's browser is JavaScript enabled.
document.writeln('<form name="formAwards">');
document.writeln('<select name="jumpmenu">');
document.writeln('<option value="#" selected>Check out past winners ...</option>');
document.writeln('<option value="/learningplace/onlinelearning/awards-winners-2007.html">2007</option>');
document.writeln('<option value="/learningplace/onlinelearning/awards-winners-2006.html">2006</option>');
document.writeln('<option value="/learningplace/onlinelearning/awards-winners-2005.html">2005</option>');
document.writeln('<option value="/learningplace/onlinelearning/awards-winners-2004.html">2004</option>');
document.writeln('<option value="/learningplace/onlinelearning/developer-awards-2003.html">2003</option>');
document.writeln('<option>-----------------------------------------------</option>');
document.writeln('<option class="blue" value="/learningplace/onlinelearning/developer-awards.html">Back to Course Developer Awards 2007</option>');

document.writeln('</select>');
document.writeln('<input type="button" value="Go"');
document.writeln('         onClick="location.href=document.formAwards.jumpmenu.options[document.formAwards.jumpmenu.options.selectedIndex].value">');
document.writeln('</form>');
//-->