var moname = new Array ("Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec.") tmp="12/09/2001 - 12/15/2001"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
"); tmp="12/16/2001 - 12/22/2001"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
"); tmp="12/23/2001 - 12/29/2001"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
"); tmp="12/30/2001 - 01/05/2002"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
"); tmp="01/06/2002 - 01/12/2002"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
"); tmp="01/13/2002 - 01/19/2002"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
"); tmp="01/20/2002 - 01/26/2002"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
"); tmp="01/27/2002 - 02/01/2002"; // get the starting month number mo=tmp.substring(0,2); // get the starting day day=tmp.substring(3,5); // get the starting year yr=tmp.substring(6,10); mo=moname[mo - 1]; // if day is 01 to 09, take just the second character if (day<10) { day=day.substring(1) } newdate=mo+" "+day+", "+yr; document.write(""); document.write(newdate); document.write("
");