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 ('<form><select name="select1" onChange="selectaplace(this.form)" size=1>');
 
document.write ('<option value="">In this section...');
document.write ('<option value="/LDC/HTML/Engadin/Engadinindex01.html">The Race');
document.write ('<option value="/LDC/Images/Engadin/RacePlan.jpg">Race layout');
document.write ('<option value="/LDC/HTML/Engadin/Marathonistas.html">The Marathonistas');
document.write ('<option value="/LDC/HTML/Engadin/Photos.html">Slide show');
document.write ('<option value="/LDC/HTML/Engadin/Training01.html">How to train');
document.write ('<option value="/LDC/HTML/Engadin/2008.html">2008');
document.write ('<option value="/LDC/HTML/Engadin/2007.html">2007');
document.write ('<option value="/LDC/HTML/Engadin/2006.html">2006');
document.write ('<option value="/LDC/HTML/Engadin/2005.html">2005');
document.write ('<option value="/LDC/HTML/Engadin/2004.html">2004');
document.write ('<option value="/LDC/HTML/Engadin/2003.html">2003');
document.write ('<option value="/LDC/HTML/Engadin/2002.html">2002');
document.write ('<option value="/LDC/HTML/Engadin/2001.html">2001');
document.write ('<option value="/LDC/HTML/Engadin/SallyStory.html">2003 - by Sally');
document.write ('<option value="/LDC/HTML/Engadin/DavidStory.html">2003 - by David');
document.write ('<option value="/LDC/HTML/Engadin/TobyStory.html">2002 - by Toby');
document.write ('<option value="/LDC/HTML/Engadin/Links01.html">Links');
document.write ('</select>');
}

makeMyMenu();
