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="#">Site Links:</option>' );
document.writeln( '<option value="index.html">Home Page</option>' );
document.writeln( '<option value="jdstut.html">Tutorials</option>' );
document.writeln( '<option value="javamain.html">JavaScripts</option>' );
document.writeln( '<option value="jds.main_office.html">Microsoft Tips</option>' );
document.writeln( '<option value="java/101.html">Developer Tools</option>' );
document.writeln( '<option value="sets/index.html">Templates</option>' );
document.writeln( '<option value="web/index.html">Support</option>' );
document.writeln( '<option value="games/games.html">Online Games</option>' );
document.writeln( '<option value="games/fun.html">Humor</option>' );
document.writeln( '<option value="sitetree.html">Site Index</option>' );
document.writeln( '<option value="forums.html">Message Board</option>' );
document.writeln( '<option value="java/guestbook.html">Guest Book</option>' );
document.writeln( '<option value="cgi-bin/search.cgi">Site Search</option>' );
document.writeln( '<option value="java/feedback.html">Feedback</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


