﻿function menu_goto( menuform )
{
  var baseurl = 'http://wonderlandgraphics.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>Select a Gallery</option>' );
document.writeln( '<option value="galleries/gallery 1.htm">Gallery 1</option>' );
document.writeln( '<option value="galleries/gallery 2.htm">Gallery 2</option>' );
document.writeln( '<option value="galleries/gallery 3.htm">Gallery 3</option>' );
document.writeln( '<option value="galleries/gallery 4.htm">Gallery 4</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

