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 = 'http://www.howtohookitup.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="#">Click Here To Jump to a Page in this How-To</option>' );
document.writeln( '<option value="home_theatre_receivers.html">Page 1 - Introduction to Receiver Inputs/Outputs</option>' );
document.writeln( '<option value="home_theatre_receivers_2.html">Page 2 - Connecting Speakers, DVD Players, your TV, and More</option>' );
document.writeln( '<option value="home_theatre_receivers_3.html">Page 3 - Basic Configuration</option>' );
document.writeln( '<option value="home_theatre_receivers_4.html">Page 4 - Final Tips and Comments on a Basic Receiver</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

