function showFulcrumSelect()
	{
	var fname;
	var vol;
	if (document.flcrmform.flcrmvol.selectedIndex > 0)
		{
		vol = document.flcrmform.flcrmvol.value;
		vol = vol.substring(0,2);
		fname = escape('/fulcrum/flcrm_' + vol + '.htm');
		window.location = fname;
		}
	}
function createFulcrumForm()
	{
	if (navigator.appName.indexOf("Explorer") >= 0)
		{
		document.writeln('Volume:<br>');
		document.writeln('<a href="/fulcrum/flcrm_56.htm" target="_top">56: 2011-12</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_55.htm" target="_top">55: 2010-11</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_54.htm" target="_top">54: 2009-10</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_53.htm" target="_top">53: 2008-09</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_52.htm" target="_top">52: 2007-08</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_51.htm" target="_top">51: 2006-07</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_50.htm" target="_top">50: 2005-06</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_49.htm" target="_top">49: 2004-05</a><br>');
		document.writeln('<a href="/fulcrum/flcrm_48.htm" target="_top">48: 2003-04</a><br>');
		}
	else
		{
		document.writeln('<table><tr><td class="label">Volume:&nbsp;<\/td><td>');
		document.writeln('<form name="flcrmform" id="flcrmform" action="#" method="get">');
		document.writeln('<select name="flcrmvol" id="flcrmvol" onchange="showFulcrumSelect();">');
		document.writeln('        <option>&nbsp;<\/option>');
		document.writeln('        <option>56 (2011-12)<\/option>');
		document.writeln('        <option>55 (2010-11)<\/option>');
		document.writeln('        <option>54 (2009-10)<\/option>');
		document.writeln('        <option>53 (2008-09)<\/option>');
		document.writeln('        <option>52 (2007-08)<\/option>');
		document.writeln('        <option>51 (2006-07)<\/option>');
		document.writeln('        <option>50 (2005-06)<\/option>');
		document.writeln('        <option>49 (2004-05)<\/option>');
		document.writeln('        <option>48 (2003-04)<\/option>');
		document.writeln('<\/select>');
		document.writeln('<\/form>');
		document.writeln('<\/td><\/tr><\/table>');
		document.flcrmform.flcrmvol.selectedIndex = 0;
		}
	}

