// JavaScript Document
function menu_goto( menuform )
{
  var baseurl = 'http://www.chicagolandauctions.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" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="index.html">View Available Property Types: </option>' );
document.writeln( '<option value="auctionlist.html#1FAM">Single Family</option>' );
document.writeln( '<option value="auctionlist.html#2FLAT">2 Unit Buildings</option>' );
document.writeln( '<option value="auctionlist.html#3FLAT">3 Unit Buildings</option>' );
document.writeln( '<option value="auctionlist.html#4FLAT">4 Unit Buildings</option>' );
document.writeln( '<option value="auctionlist.html#CONDO">Condominiums</option>' );
document.writeln( '<option value="auctionlist.html#PARK">Parking Spaces </option>' );
document.writeln( '<option value="auctionlist.html#COM">Commercial Property</option>' );
document.writeln( '<option value="auctionlist.html#VL">Vacant Land </option>' );
document.writeln( '<option value="auctionlist.html">Complete Auction List </option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

