
// Quick links functions
function QuickHandler(what){
 var URL = what.options[what.selectedIndex].value;
 if (URL == 0) {return;}
 if (URL == 1) {
   URL = "";
 } else {
   URL = "" + URL;
 }
window.location.href = URL;
}

function WriteQuickLinks(){
document.write('    <form name="Qform">' + "\n");
document.write('      <p><h2>Quick Links:</h2>' + "\n");
document.write('      <select size="1" name="QList" OnChange="javascript:QuickHandler(document.Qform.QList);">' + "\n");
document.write('        <option selected value="0">Select One...</option>' + "\n");
document.write('        <option value="0">----------</option>' + "\n");
document.write('                 </form>' + "\n");
document.write("\n");
}

