function zapto(oSelect)
{	vURL=oSelect.options[oSelect.selectedIndex].value;
	if( vURL != '0' )	
		window.location.href=vURL;
    oSelect.selectedIndex=0;
    return;
}

months=new Array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" );

startMonth=1;
startYear=2005;

// Please update the endMonth
endMonth=12;
endYear=2005;


document.write('<select name="select04"  style="border:#003399 1 solid" size="1" class="quicklinks" onChange="zapto(this)">');
document.write('<option value="0" selected>in 2005</option>');

for( i = endYear; i >= startYear ; i-- ){
	var startx=1, endx=12;
	if( i == startYear ) startx=startMonth;
	if( i == endYear ) endx=endMonth;
	year2=(i+"").substring(i+"",2,4);
	for( j = endx; j >= startx ; j-- ){
		month2=(j<10)?("0"+j):(""+j);
		tag=year2+month2;
		document.write('<option value="../'+tag+'/index.html">'+months[j-1]+' '+i+'</option>');
	}
}

document.write('</select>');

