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 Euro-Quotes...');
document.write ('<option value="/LDC/HTML/Europe/00-Intro.html">Introduction');
document.write ('<option value="/LDC/HTML/Europe/00-Intro.html#visions">Visions of Europe');
document.write ('<option value="/LDC/HTML/Europe/01-Britain.html">Britain & Europe');
document.write ('<option value="/LDC/HTML/Europe/02-Franco-Germany.html">Franco-German Axis');
document.write ('<option value="/LDC/HTML/Europe/03-USA.html">USA & Europe');
document.write ('<option value="/LDC/HTML/Europe/04-Religion.html">Religion and the EU');
document.write ('<option value="/LDC/HTML/Europe/05-Constitution.html">The EU Constitution');
document.write ('<option value="/LDC/HTML/Europe/06-Democracy.html">What democracy?');
document.write ('<option value="/LDC/HTML/Europe/07-Foreign-Policy.html">Foreign Policy');
document.write ('<option value="/LDC/HTML/Europe/08-Euro.html">Monetary Union');
document.write ('<option value="/LDC/HTML/Europe/09-Fraud.html">Euro-Fraud');
document.write ('<option value="/LDC/HTML/Europe/10-Power.html">Power Mad Freaks');
document.write ('<option value="/LDC/HTML/Europe/11-Socialism.html">Back Door Socialism');
}
makeMyMenu();
