function menu_goto( menuform )
{
  
  var baseurl = '' ;
  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="">Find it fast</option>' );
document.writeln( '<option value="http://www.countylibrary.org/index.htm">Home Page</option>' );
document.writeln( '<option value="http://library.lonestar.edu/hip/mcml.htm">Search the Library Catalog</option>' );
document.writeln( '<option value="http://www.countylibrary.org/hours.htm">Hours and Locations </option>' );
document.writeln( '<option value="http://www.countylibrary.org/ill/">Request an Interlibrary Loan</option>' );
document.writeln( '<option value="http://www.engagedpatrons.org/EventsCalendar.cfm?SiteID=7689 ">Check the Events Calendar</option>' );
document.writeln( '<option value="http://www.countylibrary.org/daba01.htm">Search the Databases</option>' );
document.writeln( '<option value="http://www.countylibrary.org/readlst.htm">Browse Booklists</option>' );
document.writeln( '<option value="http://www.countylibrary.org/serv.htm">Library Services and Borrowing Information</option>' );
document.writeln( '<option value="http://www.countylibrary.org/bookmark.htm">Search the Internet</option>' );
document.writeln( '<option value="http://www.countylibrary.org/contactus/index.htm">Send Comments to the Library </option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

