function go2(sel) {

  ix = sel.selectedIndex;

  if (sel.options[ix].value != "none") {

	loc = sel.options[ix].value;

//	alert(loc);

	document.location = loc;

	return false;

  }

  return false;

}

document.writeln('<form action=" ">');

document.writeln('<select name="select1" onChange="return go2(this)">');

document.writeln('<option value="none">Please Select item of interest');

document.writeln('<option value="none">------------------------------');

document.writeln('<option value="http://www.nswmotelbroker.com.au/accommodation/index.html">Accommodation Directory');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/disclaimer.html">Disclaimer');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/confidentiality.html">Confidentiality Agreement');

document.writeln('<option value="http://www.nswmotelbroker.com.au/index.html">Home Page');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/profile.html">About Guy Smith Brokers');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/park.html">Caravan Parks For Sale');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/motel.html">Motels For Sale');
document.writeln('<option value="http://www.nswmotelbroker.com.au/main/bed_and_breakfast_for_sale.html">Bed & Breakfast For Sale');

document.writeln('<option value="http://www.nswmotelbroker.com.au/presentations/index.html">Motel Presentations');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/contact.html">Contacting Us');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/information_request.html">Purchaser Enquiry Form');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/selling.html">Thinking of Selling Your Business');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/latest.html">Latest Listing Page');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/finance.html">Need Advice About Finance');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/owner_update.html">Update Motel Owner/s Details');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/enquiry_update.html">Update Enquiry Details');

document.writeln('<option value="http://www.nswmotelbroker.com.au/main/private.html">Click here to List your Business on this Web Site');

document.writeln('<option value="http://www.nswmotelbroker.com.au/businessesforsale.html">Businesses For Sale');



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

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

