function menu_goto( menuform )
{
  var baseurl = 'http://www.pedcorhomes.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" style="width: 200px" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="#">Select by State & City...</option>' )

document.writeln( '<option value="<optgroup label=Indiana>"><optgroup label=Indiana></option>' );
document.writeln( '<option value="hickory/index.php">Anderson, Hickory Knoll</option>' );
document.writeln( '<option value="echo/index.php">Indianapolis, Echo Ridge</option>' );
document.writeln( '<option value="ohio/index.php">Indianapolis, Ohio Street</option>' );
document.writeln( '<option value="trotters/index.php">Greenwood, Trotters Pointe</option>' );
document.writeln( '<option value="greystone/index.php">Noblesville, Greystone</option>' );
document.writeln( '<option value="lions/index.php">Noblesville, Lions Creek</option>' );

document.writeln( '<option value="<optgroup label=Illinois>"><optgroup label=Illinois></option>' );
document.writeln( '<option value="danbury/index.php">Bloomington, Danbury Court</option>' );
document.writeln( '<option value="fox/index.php">Bloomington, Fox Hill</option>' );
document.writeln( '<option value="brainard/index.php">Lincoln, Brainard Landings</option>' );
document.writeln( '<option value="prairie/index.php">Urbana, Prairie Green</option>' );

document.writeln( '<option value="<optgroup label=Tennessee>"><optgroup label=Tennessee></option>' );
document.writeln( '<option value="weatherly/index.php">Antioch, Weatherly Ridge</option>' );
document.writeln( '<option value="retreat/index.php">Goodlettsville, Retreat at Dry Creek</option>' );
document.writeln( '<option value="ashland/index.php">Memphis, Ashland Lakes</option>' );
document.writeln( '<option value="southwind/index.php">Memphis, Southwind Lakes</option>' );

document.writeln( '<option value="<optgroup label=Arizona>"><optgroup label=Arizona></option>' );
document.writeln( '<option value="palm/index.php">Goodyear, Palm Valley</option>' );

document.writeln( '<option value="<optgroup label=California>"><optgroup label=California></option>' );
document.writeln( '<option value="bella/index.php">El Cajon, Bella Vista</option>' );

document.writeln( '</select>' );
document.writeln( '</form>' );

