var optionString = '';
document.write("<DIV class=directory>");
document.write("<form name='pressRelease'>");
document.write("<SELECT class='dropDownMenuStyle' name='year' onChange='window.location=document.pressRelease.year.options[document.pressRelease.year.selectedIndex].value'>");
document.write("<OPTION SELECTED value='#'>--- Choose Year ---");
document.write(optionBox());
document.write("</SELECT>");
document.write("</form>");
document.write("</div>");

function optionBox(){
	var optionString = '';
	var noOfYear;
	var d = new Date();
	var year;
	noOfYear = d.getFullYear() - 2002;
	for(var i=noOfYear; i>=0; i--)
	{
		year = 2002 + i;
		optionString += "<OPTION value='about_us_press_release_"+ year +".html'>"+year;
	}
	return optionString;
}
