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.myspace-crash-codes.com/colorlayouts/' ;
  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="layouts.html">Select a Layout</option>' );
document.writeln( '<option value="blackandwhite.html">Black and White</option>' );
document.writeln( '<option value="pinkandyellow.html">Pink and Yellow</option>' );
document.writeln( '<option value="greenandteal.html">Green and Teal</option>' );
document.writeln( '<option value="blackandred.html">Black and Red</option>' );
document.writeln( '<option value="pinkandteal.html">Pink and Teal</option>' );
document.writeln( '<option value="tealandwhite.html">Teal and White</option>' );
document.writeln( '<option value="pinkandorange.html">Pink and Orange</option>' );
document.writeln( '<option value="darkblueandlightblue.html">Dark Blue and Light Blue</option>' );
document.writeln( '<option value="pinkandgreen.html">Pink and Green</option>' );
document.writeln( '<option value="bluepinkgreenongray.html">Blue, Pink, Green on Gray</option>' );
document.writeln( '<option value="purpleandgreen.html">Purple and Green</option>' );document.writeln( '<option value="blueandgreen.html">Blue and Green</option>' );
document.writeln( '<option value="darkblueandgreen.html">Dark Blue and Green</option>' );
document.writeln( '<option value="lightpinkandyellow.html">Light Pink and Yellow</option>' );document.writeln( '</select>' );
document.writeln( '</form>' );



