function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.buildyourown-computer.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)" style="font-size:18">' );
document.writeln( '<option value="Components.html">Part 1: Overview</option>' );
document.writeln( '<option value="CPU.html">Part 2: CPU</option>' );
document.writeln( '<option value="Motherboard.html">Part 3: Motherboard</option>' );
document.writeln( '<option value="Video_Card.html">Part 4: Video Card</option>' );
document.writeln( '<option value="RAM.html">Part 5: RAM</option>' );
document.writeln( '<option value="PSU.html">Part 6: Power Supply</option>' );
document.writeln( '<option value="Case.html">Part 7: Case</option>' );
document.writeln( '<option value="Drives.html">Part 8: Drives</option>' );
document.writeln( '<option value="Accessories.html">Part 9: Accessories</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

