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('<select name="select1" onChange="return go2(this)">');
document.writeln('<option value="none">Things to do and see:');
document.writeln('<option value="index.html">Cronulla General Information');
document.writeln('<option value="scuba-diving.html">&nbsp;&nbsp;- Scuba Diving');
document.writeln('<option value="bike-riding.html">&nbsp;&nbsp;- Bike Riding');
document.writeln('<option value="surfing.html">&nbsp;&nbsp;- Surfing');
document.writeln('<option value="horse-riding.html">&nbsp;&nbsp;- Horse Riding');
document.writeln('<option value="sky-diving.html">&nbsp;&nbsp;- Sky Diving');
document.writeln('<option value="hang-gliding.html">&nbsp;&nbsp;- Hang Gliding');
document.writeln('<option value="cronulla-nightlife.html">&nbsp;&nbsp;- Nightlife');
document.writeln('<option value="royal-national-park.html">Royal National Park Info');
document.writeln('<option value="camping.html">&nbsp;&nbsp;- YHA &amp; Camping');
document.writeln('<option value="walking-tracks.html">&nbsp;&nbsp;- Walking Tracks');
document.writeln('<option value="../royal-national-park/index.html">&nbsp;&nbsp;- Coastal walk gallery');
document.writeln('<option value="royal-national-park-map.html">&nbsp;&nbsp;- Map');
document.writeln('<option value="sydney-tourist-information.html">Sydney General Information');
document.writeln('<\/select>');
