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/Opinion/Iraq/IraqTV.html">Rebuilding Iraq TV');
document.write ('<option value="/LDC/HTML/Opinion/Iraq/IraqHeritage.html">Rebuild looted collections');
document.write ('<option value="/LDC/HTML/Opinion/Iraq/Al_Sahhaf.html">Mohammed Saeef Al-Sahhaf');
document.write ('<option value="/LDC/HTML/Opinion/Iraq/Breach.html">Once more unto the breach');
document.write ('<option value="/LDC/HTML/Opinion/Iraq/Iraq3.html">What future the UN?');
document.write ('<option value="/LDC/HTML/Opinion/Iraq/Iraq2.html">Why listen to me?');
document.write ('<option value="/LDC/HTML/Opinion/TimCollins.html">Lt. Col. Tim "Nails" Collins');
document.write ('<option value="/LDC/HTML/Opinion/Iraq.html">Why I support the war');
document.write ('</select>');
}

makeMyMenu();
