function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.hans.bruntt.dk/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="index.html">Navigation</option>' );
document.writeln( '<option value="pages/astronomy.html">Astronomi</option>' );
document.writeln( '<option value="pages/music2.html">Discografi</option>' );
document.writeln( '<option value="pages/movies.html">Filmografi</option>' );
//document.writeln( '<option value="pages/roskilde.html">Roskilde Fest</option>' );
//document.writeln( '<option value="ff/index.html">Foking Films</option>' );
//document.writeln( '<option value="pages/galleri.html">Galleri</option>' );
//document.writeln( '<option value="pages/gastro.html">Gastronomi</option>' );
//document.writeln( '<option value="pages/bib.html">Bibliografi</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

