<!-- 
function selectaplace(form) {
var appname= navigator.appName;
var appversion=parseInt(navigator.appVersion);
if (appname == "Netscape" && appversion >= 3) {
var formindex=form.select1.selectedIndex;
var storage=form.select1.options[formindex].text;
if (form.select1.options[formindex].value != "none") {
var msg=storage+"You are now being transferred to the -> "+storage;
for (var spot=0;spot<msg.length-storage.length;spot++) {
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
for(var d=0;d<150;d++) { };
}
window.location=form.select1.options[formindex].value;
form.select1[formindex].text=storage;
} else  {
form.select1[formindex].text="Not a real option!";
for(var d=0;d<1250;d++) { };
form.select1[formindex].text=storage;
   }
}
else {
var formindex=form.select1.selectedIndex;
window.location=form.select1.options[formindex].value;
   }
}
function makeMyMenu() {
document.write ('<STYLE>.x{font-size:9pt;}.y{background-color:cornsilk}</STYLE>');
document.write ('<form><select name="select1" onchange="selectaplace(this.form)" SIZE="1" CLASS="x">');
document.write ('<option value="contact.htm">Select...');
document.write ('<option value=Contents9909.html CLASS="y">Sep 1999');
document.write ('<option value=Contents9910.html CLASS="y">Oct 1999');
document.write ('<option value=Contents9911.html CLASS="y">Nov 1999');
document.write ('<option value=Contents9912.html CLASS="y">Dec 1999');
document.write ('<option value=Contents0001.html>Jan 2000');
document.write ('<option value=Contents0002.html>Feb 2000');
document.write ('<option value=Contents0003.html>Mar 2000');
document.write ('<option value=Contents0004.html>Apr 2000');
document.write ('<option value=Contents0005.html>May 2000');
document.write ('<option value=Contents0009.html>Sep 2000');
document.write ('<option value=Contents0102.html CLASS="y">Feb 2001');
document.write ('<option value=Contents0106.html CLASS="y">Jun 2001');
document.write ('<option value=Contents0107.html CLASS="y">Jul 2001');
document.write ('<option value=Contents0109.html CLASS="y">Sep 2001');
document.write ('<option value=Contents0205.html CLASS="y">May 2002');
document.write ('<option value=Contents0209.html CLASS="y">Sep 2002');
document.write ('<option value=Contents0310.html>Oct 2003');
document.write ('<option value=Contents0406.html CLASS="y">Jun 2004');
document.write ('<option value=Contents0408.html CLASS="y">Aug 2004');
document.write ('<option value=Contents0609.html CLASS="y">Sep 2006');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();
//-->