var moname = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
tmp="07/01/2001 - 07/31/2001";
// get the starting month number
mo=tmp.substring(0,2);
// get the starting year
yr=tmp.substring(6,10);
mo=moname[mo - 1];
newdate=mo+", "+yr;
document.write("");
document.write(newdate);
document.write("
");
tmp="08/01/2001 - 08/31/2001";
// get the starting month number
mo=tmp.substring(0,2);
// get the starting year
yr=tmp.substring(6,10);
mo=moname[mo - 1];
newdate=mo+", "+yr;
document.write("");
document.write(newdate);
document.write("
");
tmp="09/01/2001 - 09/30/2001";
// get the starting month number
mo=tmp.substring(0,2);
// get the starting year
yr=tmp.substring(6,10);
mo=moname[mo - 1];
newdate=mo+", "+yr;
document.write("");
document.write(newdate);
document.write("
");
tmp="10/01/2001 - 10/31/2001";
// get the starting month number
mo=tmp.substring(0,2);
// get the starting year
yr=tmp.substring(6,10);
mo=moname[mo - 1];
newdate=mo+", "+yr;
document.write("");
document.write(newdate);
document.write("
");
if (location.href.indexOf("archive") != -1) {
document.write("
< back to current")
}