function showClubNoteSelect()
	{
	var fname;
	var vol;
	if (document.clubnoteform.clubnoteyr.selectedIndex > 0)
		{
		vol = document.clubnoteform.clubnoteyr.value;
		vol = vol.substring(0,4) + vol.substring(5);
		fname = escape('/clubnotes/' + vol + '.htm');
		window.location = fname;
		}
	}
function createClubNotesForm()
	{
	document.writeln('<p class="centred">');
	if (navigator.appName.indexOf("Explorer") >= 0)
		{
		document.writeln('Rotary Year:<br>');
		document.writeln('<a href="/clubnotes/200910.htm" target="_top">2009-10</a><br>');
		document.writeln('<a href="/clubnotes/200809.htm" target="_top">2008-09</a><br>');
		document.writeln('<a href="/clubnotes/200708.htm" target="_top">2007-08</a><br>');
		document.writeln('<a href="/clubnotes/200607.htm" target="_top">2006-07</a><br>');
		}
	else
		{
		document.writeln('<table class="centred"><tr><td class="label">Rotary Year:&nbsp;<\/td><td>');
		document.writeln('<form name="clubnoteform" id="clubnoteform" action="#" method="get">');
		document.writeln('<select name="clubnoteyr" id="clubnoteyr" onchange="showClubNoteSelect();">');
		document.writeln('        <option>&nbsp;<\/option>');
		document.writeln('        <option>2009-10<\/option>');
		document.writeln('        <option>2008-09<\/option>');
		document.writeln('        <option>2007-08<\/option>');
		document.writeln('        <option>2006-07<\/option>');
		document.writeln('<\/select>');
		document.writeln('<\/form>');
		document.writeln('<\/td><\/tr><\/table>');
		document.clubnoteform.clubnoteyr.selectedIndex = 0;
		}
	document.writeln('</p>');
	}

