function menu_goto( menuform )
{
  var baseurl = 'http://www.ize2belize.com/' ;
  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="">Select a Subject . . .</option>' );
document.writeln( '<option value="">-- QUICK LINKS --</option>' );
document.writeln( '<option value="belize/travel/student/travel.html">Students</option>' );
document.writeln( '<option value="belize/travel/academic/travel.html">Educators</option>' );
document.writeln( '<option value="belize/travel/family/vacation.html">Families</option>' );
document.writeln( '<option value="belize/travel/adventure/vacation.html">Adventurers</option>' );
document.writeln( '<option value="">-- ABOUT IZE --</option>' );
document.writeln( '<option value="belize/ize/about.html">About IZE</option>' );
document.writeln( '<option value="belize/ize/packages.html">Tours & Packages</option>' );
document.writeln( '<option value="belize/ize/island/southwatercaye.html">South Water Caye</option>' );
document.writeln( '<option value="belize/ize/rainforest/bluecreek.html">Blue Creek</option>' );
document.writeln( '<option value="belize/ize/venezuela/ecoadventure.html">Venezuela</option>' );
document.writeln( '<option value="belize/ize/requestinfo.html">Request Info</option>' );
document.writeln( '<option value="">-- BELIZE --</option>' );
document.writeln( '<option value="belize/facts/overview.html">Learn about Belize</option>' );
document.writeln( '<option value="belize/ize/tours/student-travel.html">Educational Experience</option>' );
document.writeln( '<option value="belize/ize/tours/teacher-workshop.html">Summer Workshops</option>' );
document.writeln( '<option value="belize/vacation/sports/overview.html">Sports & Activities</option>' );
document.writeln( '<option value="belize/ize/food.html">Food & Accomodations</option>' );
document.writeln( '<option value="belize/ize/referrals.html">What Others are Saying</option>' );
document.writeln( '<option value="belize/ize/reservations.html">Book your Vacation</option>' );
document.writeln( '<option value="belize/vacation/tips/overview.html">Travel Tips</option>' );
document.writeln( '<option value="">&nbsp;&nbsp;</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
