var optionString = '';
document.write("<DIV class=directory>");
document.write("<form name='milestone'>");
document.write("<SELECT class='dropDownMenuStyle' name='year' onChange='window.location=document.milestone.year.options[document.milestone.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() - 1995;
	for(var i=noOfYear; i>=0; i--)
	{
		year = 1995 + i;
		optionString += "<OPTION value='about_us_milestone_"+ year +".html'>"+year;
	}
	return optionString;
}
