function menu_goto( menuform )
{
  var baseurl = 'http://bigblake.co.nr' ;
  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="">-------------------------------</option>' );
document.writeln( '<option value="/blog">::BigBlakeBlog::</option>' );
document.writeln( '<option value="/reddwarf">Red Dwarf</option>' );
document.writeln( '<option value="/sleep">Sleep</option>' );
document.writeln( '<option value="/tittybits.html">tittybits</option>' );
document.writeln( '<option value="">-------------------------------</option>' );
document.writeln( '<option value="/sitemap.html">Site map</option>' );
document.writeln( '<option value="/siteinformation.html">Site information</option>' );
document.writeln( '<option value="/contact.html">Contact</option>' );
document.writeln( '<option value="">-------------------------------</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );