function putmail(dom, usr, prompt)
{
  document.write('<a href="mailto:' + usr + '@' + dom + '">');
  document.write(prompt);
  document.write('<\/a>\n');
}

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" selected>...do the time warp and explore...');
document.writeln('<option value="none">--------------------');
document.writeln('<option value="../news.html">News at Old Mogo Town');
document.writeln('<option value="none">--------------------');
document.writeln('<option value="../panning.html">Pan For gold');
document.writeln('<option value="../mine.html">Explore the Mine Tunnel');
document.writeln('<option value="../stamper.html">How gold was extracted');
document.writeln('<option value="../antique-machinery.html">Antique Machinery Shed');
document.writeln('<option value="../law.html">Law Enforcement');
document.writeln('<option value="../bushrangers.html">&nbsp;&nbsp;The Clarke Brothers');
document.writeln('<option value="../earlyliving.html">Early Living Conditions');
document.writeln('<option value="../cottage.html">Settlers Cottage');
document.writeln('<option value="../shanty.html">Shanty Pub');
document.writeln('<option value="../transport.html">1800s Transport');
document.writeln('<option value="../chinese.html">Chinese Influence');
document.writeln('<option value="../surveyor.html">Wash House');
document.writeln('<option value="../furphy.html">Furphy Water Cart');
document.writeln('<option value="../postoffice.html">Old Mogo Post Office');
document.writeln('<option value="../blacksmith.html">Blacksmith and Wheelwright');
document.writeln('<option value="../barber.html">Barber, Apothecary and Undertaker');
document.writeln('<option value="none">--------------------');
document.writeln('<option value="index.html">Accommodation');
document.writeln('<option value="../function.html">Functions');
document.writeln('<option value="../weddings.html">Wedding Receptions');
document.writeln('<option value="../events.html">Events - Whats Happening');
document.writeln('<option value="../tavern.html">Diggers Rest Tavern, Restaurant');
document.writeln('<option value="../craft.html">Art and Craft Workers');
document.writeln('<option value="none">--------------------');
document.writeln('<option value="../index.html">Homepage');
document.writeln('<option value="../sitemap.html">Site Map');
document.writeln('<option value="../education.html">Education');
document.writeln('<option value="../contact.html">Location and Contact');
document.writeln('<option value="../form.html">Bookings and Enquiries');
document.writeln('<option value="../links.html">Tourism Links');
document.writeln('<option value="none">--------------------');
document.writeln('<\/select>');
