function goarch(){

if(document.getElementById('arch').selectedIndex>0){
    window.location=document.getElementById('arch').options[document.getElementById('arch').selectedIndex].value;
}
return true;
}

var m_names = new Array("January", "February", "March","April", "May", "June", "July", "August", "September", "October", "November", "December");

document.write ("<div align='center'><select id='arch' onchange='goarch();'>");
document.write ("<option value=''>--SELECT--</option>");
document.write ("<option value='http://www.anotherchancetosee.com/'>Current Posts</option>");

dt1 = new Date()    //today's date
yy=dt1.getFullYear();
mm=dt1.getMonth() + 1;

while (yy>=2004){

    while(mm>0){
	var ms;
	if(mm<10){ms="0"+mm;}else{ms=""+mm;}
	
	    if(yy>2004 || (yy==2004 && mm>=7)){	
	    document.write ("<option value='http://www.anotherchancetosee.com/" + yy + "_" + ms + "_01_archive.html'>" +  m_names[mm-1] + " " + yy + "</option>");
        }
    
	mm=mm-1
    }
    yy=yy-1;
    mm=12;
}
                        
document.write ("</select></div><br />");

