function menu_goto( menuform ){  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="">-- Switch Layouts --</option>' );document.writeln( '<option value="index.php?skin=hyoutei">Hyoutei Version</option>' );document.writeln( '<option value="index.php?skin=rikkai">Rikkai Version</option>' );document.writeln( '<option value="index.php?skin=seiru">St. Rudolph Version</option>' );document.writeln( '<option value="index.php?skin=rokkaku">Rokkaku Version</option>' );document.writeln( '<option value="index.php?skin=seigaku">Seigaku Version</option>' );document.writeln( '<option value="index.php?skin=yamabuki">Yamabuki Version</option>' );document.writeln( '<option value="index.php?skin=fudomine">Fudoumine Version</option>' );document.writeln( '<option value="">--Fairy Tales Layouts--</option>' );document.writeln( '<option value="index.php?skin=sleeping">Sleeping Beauty (OshiAto)</option>' );document.writeln( '<option value="">--Special Layouts--</option>' );document.writeln( '<option value="index.php?skin=crimson">Crimson Butterfly (K Twins)</option>' );document.writeln( '</select>' );document.writeln( '</form>' );