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="">More Europe...');
document.write ('<option value="/KTP/HTML/Austria.html">Austria');
document.write ('<option value="/KTP/HTML/BelgHoll.html">Belgium & Holland');
document.write ('<option value="/KTP/HTML/EasternEurope.html">Central & Eastern Europe');
document.write ('<option value="/KTP/HTML/England.html">England');
document.write ('<option value="/KTP/HTML/France.html">France');
document.write ('<option value="/KTP/HTML/Germany.html">Germany');
document.write ('<option value="/KTP/HTML/Greece.html">Greece');
document.write ('<option value="/KTP/HTML/Ireland.html">Ireland');
document.write ('<option value="/KTP/HTML/Italy.html">Italy');
document.write ('<option value="/KTP/HTML/Russia.html">Russia');
document.write ('<option value="/KTP/HTML/Scandinavia.html">Scandinavia');
document.write ('<option value="/KTP/HTML/Scotland.html">Scotland');
document.write ('<option value="/KTP/HTML/SpainPortugal.html">Spain & Portugal');
document.write ('<option value="/KTP/HTML/Wales.html">Wales');
document.write ('</select>');
}

makeMyMenu();
