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: 160px" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="#">Select by Property...</option>' )
document.writeln( '<option value="ashland/index.php">Ashland Lakes</option>' );
document.writeln( '<option value="bellavista/index.php">Bella Vista</option>' );
document.writeln( '<option value="brainard/index.php">Brainard Landings</option>' );
document.writeln( '<option value="danbury/index.php">Danbury Court</option>' );
document.writeln( '<option value="echo/index.php">Echo Ridge</option>' );
document.writeln( '<option value="fox/index.php">Fox Hill</option>' );
document.writeln( '<option value="greystone/index.php">Greystone</option>' );
document.writeln( '<option value="hickory/index.php">Hickory Knoll</option>' );
document.writeln( '<option value="lions/index.php">Lions Creek</option>' );
document.writeln( '<option value="ohio/index.php">Ohio Street</option>' );
document.writeln( '<option value="palm/index.php">Palm Valley</option>' );
document.writeln( '<option value="prairie/index.php">Prairie Green</option>' );
document.writeln( '<option value="retreat/index.php">Retreat at Dry Creek</option>' );
document.writeln( '<option value="southwind/index.php">Southwind Lakes</option>' );
document.writeln( '<option value="trotters/index.php">Trotters Pointe</option>' );
document.writeln( '<option value="weatherly/index.php">Weatherly Ridge</option>' );

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

