<!--
var this_volume =  134;
var this_month = 02;
var this_year = 2010;
var this_sequence = 134;
months = new Array(12);
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";
this_month--;
if (this_month == 0){
	this_month = 12;
	this_year--;
	}
document.writeln( "<OPTION VALUE=" + (this_volume - 1) + " SELECTED>" + months[this_month - 1] + " " + this_year);
for (n = (this_volume - 2); n > (this_volume - this_sequence); n--){
	this_month--;
	if (this_month == 0){
		this_month = 12;
		this_year--;
		}
	window.document.writeln( "<OPTION VALUE=" + n + ">" + months[ this_month - 1] + " " + this_year);
}
// -->