op=[[],[]];

op[0]=[" Please Select ",""]
op[1]=[" July 2008 ","new_july08.htm"];
op[2]=[" August 2008 ","new_august08.htm"];
op[3]=[" September 2008 ","new_september08.htm"];
op[4]=[" October 2008 ","new_october08.htm"];
op[5]=[" November 2008 ","new_november08.htm"];
op[6]=[" December 2008 ","new_december08.htm"];
op[7]=[" January 2009 ","new_january09.htm"];
op[8]=[" February 2009 ","new_february09.htm"];
op[9]=[" March 2009 ","new_march09.htm"];
op[10]=[" April 2009 ","new_april09.htm"];
op[11]=[" May 2009 ","new_may09.htm"];
op[12]=[" June 2009 ","new_june09.htm"];
op[13]=[" July 2009 ","new_july09.htm"];
op[14]=[" August 2009 ","new_august09.htm"];
op[15]=[" September 2009 ","new_september09.htm"];
op[16]=[" October 2009 ","new_october09.htm"];
op[17]=[" November 2009 ","new_november09.htm"];
op[18]=[" December 2009 ","new-dec09.htm"];
op[19]=[" January 2010 ","new-jan09.htm"];

function func(obj){
location=obj.value+"?index="+obj.selectedIndex;
}

obj=document.forms[0].elements["select"];
num=parseInt(location.search.substring(7));
for(var i=0;i<op.length;i++){
obj.options[i]=new Option(op[i][0],op[i][1]);
if(i==num)obj.options[i].selected=true;
}