function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.dentalstudentbooks.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="index.html">Branches of Dentistry</option>' );
document.writeln( '<option value="">-------------------</option>' );
document.writeln( '<option value="dentistry_information.html">Dentistry Career Info</option>' );
document.writeln( '<option value="dentistry/general_dentistry.html">General Dentistry</option>' );
document.writeln( '<option value="dentistry/endodontics.html">Endodontics</option>' );
document.writeln( '<option value="dentistry/oral_pathology.html">Oral Pathology</option>' );
document.writeln( '<option value="dentistry/oral_radiology.html">Oral Radiology</option>' );
document.writeln( '<option value="dentistry/oral_surgery.html">Oral Surgery</option>' );
document.writeln( '<option value="dentistry/orthodontics.html">Orthodontics</option>' );
document.writeln( '<option value="dentistry/pedodontics.html">Pedodontics</option>' );
document.writeln( '<option value="dentistry/periodontics.html">Periodontics</option>' );
document.writeln( '<option value="dentistry/prosthodontics.html">Prosthodontics</option>' );
document.writeln( '<option value="dentistry/public_health_dentistry.html">Public Health</option>' );
document.writeln( '<option value="dentistry/dental_anesthesiology.html">Dental Anesthesiology</option>' );


document.writeln( '</select>' );
document.writeln( '</form>' );

