// JavaScript Document
function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  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="#">PHOTO GALLERY</option>' );
document.writeln( '<option value="#">----------------</option>' );
document.writeln( '<option value="photos_albany1.htm#corbinhall">&nbsp;&nbsp;The Albany - Corbin Hall</option>' );
document.writeln( '<option value="photos_shef1.htm">&nbsp;&nbsp;The Clarkson - Corbin Hall</option>' ); 
document.writeln( '<option value="photos_stcharles1.htm#corbinhall">&nbsp;&nbsp;St. Charles - Corbin Hall</option>' );
document.writeln( '<option value="photos_albany2.htm#portscarburgh">&nbsp;&nbsp;The Albany - Port Scarburgh</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

