function menu_goto( menuform )
{var baseurl = '' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    top.main.location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get" target="main">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="home.html">Home</option>' );
document.writeln( '<option value="artists.html">Artists</option>' );
document.writeln( '<option value="speakers.html">Speakers</option>' );
document.writeln( '<option value="activities.html">Activities</option>' );
document.writeln( '<option value="schedules.html">Schedules</option>' );
document.writeln( '<option value="prices.html">Prices</option>' );
document.writeln( '<option value="register.html">Register Now!</option>' );
document.writeln( '<option value="summer.html">Summer 09</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

