
function change_mth() {
	obj=document.year.year[document.year.year.selectedIndex].value;
	document.location=obj;
}

base_filename = "press-";
file_ext	=	".htm";

var yearName = new Array ("2010","2009");

document.write("<div align=\"right\"><table>");
document.write("<tr><form method=post action=news.cgi name=year>");
document.write("<td valign=\"middle\">Please Select Year: </td>");
document.write("<td>");
document.write("<select name=\"year\" class=\"in\" onchange=\"change_mth();\">");

file_path = document.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("</select>");
document.write("</td></tr></form></table></div>");