
function change_mth() {
	obj=document.year.year[document.year.year.selectedIndex].value;
	document.location=obj;
}

base_filename = "content_";
file_ext	=	".htm";

var yearName = new Array ("2010", "2009", "2008", "2007","2006", "2005","2004","2003","2002","2001","2000");


document.write("<table align=\"right\">");
document.write("<tr><form method=post action=news.cgi name=year>");
document.write("	<td valign=\"middle\">Select Year: </td>");
document.write("	<td>");
document.write("<select name=\"year\" class=\"in\" onchange=\"change_mth();\">");

//document.write("<option value='content_03.htm' selected>2003");
file_path = parent.location.pathname;
file_year_start=file_path.indexOf(base_filename)+1;
file_year_end=file_path.length-file_ext.length;
file_year=file_path.substring(file_year_start + base_filename.length -1, file_year_end);

for ( i=0; i<yearName.length; i++) {
	sel_str = (yearName[i]==file_year) ? "selected" : '';
	document.write("<option value='"+base_filename+yearName[i]+".htm'" +sel_str+">"+yearName[i]);


}

//document.write("<option value='content_01.htm'>2001");
//document.write("<option value='content_00.htm'>2000");
//document.write("<option value='content_99.htm'>1999");
document.write("</select>");

document.write("</td></tr></form></table><br><br>");
