// paste this into your archive template, and remember // there should be absolutely nothing else in your archive template // moname[0] = "January" ... var moname = new Array ("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12") // tmp="05/01/2001 - 05/31/2001" tmp="12/01/2001 - 12/31/2001"; // get number for month mo=tmp.substring(13,15); // get number for year yr=tmp.substring(19); // change month number to name - remember January = 0 mo=moname[mo - 1]; // set date to "May 2001" newdate=mo+"."+yr; // tell the script to write the archive link in the main page document.write(""); // tell the script to write the date document.write(" "); document.write(newdate); document.write(" "); // close the link tag and go to a new line document.write("
");