var Months = new Array();
Months[0] = "January ";
Months[1] = "February ";
Months[2] = "March ";
Months[3] = "April ";
Months[4] = "May ";
Months[5] = "June ";
Months[6] = "July ";
Months[7] = "August ";
Months[8] = "September ";
Months[9] = "October ";
Months[10] = "November ";
Months[11] = "December ";

var Year = 2000;
var kk = 4;
var ThisPage = document.title
var DynTitle

document.write("<table align='center' width='90%' cellspacing='0' cellpadding='0' border='0'>")

for (jj=0; jj<94; jj++) {
   if ((jj%4)==0) {
       document.write("<tr valign='top'>")
   }

   DynTitle = Months[kk-1] + eval(Year) + " HUPS Newsletter"
   if (ThisPage==DynTitle) {
      kk++
      if (kk==13) {
         kk = 1
         Year++
      }
   }

   document.write("<td width='25%' align='left'>")
   document.write("<b><a href='" + kk + "-" + Year + ".htm'>" + Months[kk-1])
   document.write(Year + "<\/a><\/b><\/td>")
   if ((jj%4)==3) {
      document.write("<\/tr>")
   }
   kk++
   if (kk==13) {
      kk = 1
      Year++
   }
}
document.write("<td align='left' colspan='2'>")
if (ThisPage=="March 2008 HUPS Newsletter") {
   document.write("<b><a href='2-2008.htm'>February 2008<\/a><\/b><\/td>")
}
if (ThisPage!="March 2008 HUPS Newsletter") {
   document.write("<b><a href='newsletr.htm'>March 2008<\/a><\/b><\/td>")
}
document.write("<\/tr><\/table>")

