// JavaScript Document
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://localhost/sleeper_stores/' ;
   // var baseurl = 'http://localhost/sleeper_admin/' ;
  var baseurl = 'http://www.guardian-sleeper.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    top.menu_iframe.location.href = baseurl + newurl ;
  }
}
document.writeln( '<legend><h3>Country</h3><legend>' ); 
//document.writeln( '<form action="../chgoto" method="get" target="#menu_iframe">' );
document.writeln( '<form action="chgoto" method="get" target="#menu_iframe">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)" >' );
document.writeln( '<option value=""><b>Select Below</b></otion>' ); 
document.writeln( '<option value="america.php">America</option>' );
document.writeln( '<option value="australia.php">Australia</option>' );
document.writeln( '<option value="canada.php">Canada</option>' );
document.writeln( '<option value="uk.php">United Kingdom</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );