//
// original code by Bill Trefzger 12/12/96
//
function go1()
{
	if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") 
	{
		location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
	}
}
//
// Menu options below
//
document.write('<form name="selecter1"><select name="select1" size=1>');
document.write('<option value="index.html">Helier front page');
document.write('<option value="boxing_day_1999.html">Boxing day 1999');
document.write('<option value="calendar_of_capers.html">Calendar of capers 2007');
document.write('<option value="chronology.html">Chronology');
document.write('<option value="compendium.html">Compendium of dances');
document.write('<option value="fete_form.html">Fetes');
document.write('<option value="gloucestershire_pics.html">Gloucestershire ale 1999');
document.write('<option value="may_day_2000.html"><B>May Day 2000</B>');
document.write('<option value="links.html"><B>Morris links</B>');
document.write('<option value="sark_pics.html">Sark 1999');
document.write('<option value="silver_jubilee.html">Silver Jubilee');
document.write('<option value="times_past.html">Temps Passe&eacute;');
document.write('<option value="wassail.html">Wassail 2000');
document.write('</select>'); // <a href="../times_past.html">Helier Morris Mens'</a>
document.write('<input type="button" value="Go" onclick="go1()">');
document.write('</form>');
