// JavaScript Document

function ASelected() 
{
document.write("<FORM>Displaying for the year:");

document.write("\t<SELECT ONCHANGE=\"location = this.options[this.selectedIndex].value;\">");

switch(SelVar)
{
case "2009":
	document.write("<OPTION VALUE=\"/pressReleases.shtml\" selected>2009</OPTION>");
	document.write("<OPTION VALUE=\"/archive/pressReleases08.shtml\">2008</OPTION>");
	document.write("<OPTION VALUE=\"/archive/pressReleases07.shtml\">2007</OPTION>");
  break;
case "2008":
	document.write("<OPTION VALUE=\"/pressReleases.shtml\">2009</OPTION>");
	document.write("<OPTION VALUE=\"/archive/pressReleases08.shtml\" selected>2008</OPTION>");
	document.write("<OPTION VALUE=\"/archive/pressReleases07.shtml\">2007</OPTION>");
  break;
case "2007":
	document.write("<OPTION VALUE=\"/pressReleases.shtml\">2009</OPTION>");
	document.write("<OPTION VALUE=\"/archive/pressReleases08.shtml\">2008</OPTION>");
	document.write("<OPTION VALUE=\"/archive/pressReleases07.shtml\" selected>2007</OPTION>");
  break;
default:
  break;
}

document.write("</SELECT>");
document.write("</FORM>");
}