function auswahl(objekt)
{
  if (objekt.options[objekt.selectedIndex].value =='') return true;
  window.document.location=(objekt.options[objekt.selectedIndex].value);
  return true;
}

function menue_schreiben()
{
if (navigator.appName=="Microsoft Internet Explorer") {
window.document.write(
 '<SELECT NAME="fotoauswahl" onChange="auswahl(this)" STYLE="background-color:#AACCAA">',
  '<OPTION>--&gt; w&auml;hle eine story</OPTION>',
  '<OPTION VALUE="story05.html">super nummer, super gspielt (17-12-2005)</OPTION>',
  '<OPTION VALUE="story04.html">culturex fussballturnier (16-8-2002)</OPTION>',
  '<OPTION VALUE="story03.html">dj elk: zehn fragen... (3-5-2002)</OPTION>',
  '<OPTION VALUE="story02.html">prominente g&auml;ste (17-7-2001)</OPTION>',
  '<OPTION VALUE="story01.html">so fanden sie new noize (2-4-2001)</OPTION>',
 '</SELECT>');
return true;}
else
 return true;
}

