function menu_goto( menuform )
{
  // External JavaScript Menu by Jim Stiles
  // http://jdstiles.com
    var baseurl = 'http://jdstiles.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    top.top.location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get" target="_top">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="#">Where do you want to go</option>' );
document.writeln( '<option value="index.html">Home Page</option>' );
document.writeln( '<option value="javamain.html">JavaScript Examples</option>' );
document.writeln( '<option value="jds.main_office.html">Microsoft Office Tips</option>' );
document.writeln( '<option value="web/services.html">Support Services</option>' );
document.writeln( '<option value="sitetree.html">Site Index</option>' );
document.writeln( '<option value="cgi-bin/search.cgi">Site Search</option>' );
document.writeln( '<option value="java/guestbook.html">Guest Book</option>' );
document.writeln( '<option value="java/feedback.html">Feedback</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
document.writeln( '<br><br>' )

