<!--
function getLongMonths()
{
   var lLongMonths = new Array(12);
   lLongMonths[0] = "January";
   lLongMonths[1] = "February";
   lLongMonths[2] = "March";
   lLongMonths[3] = "April";
   lLongMonths[4] = "May";
   lLongMonths[5] = "June";
   lLongMonths[6] = "July";
   lLongMonths[7] = "August";
   lLongMonths[8] = "September";
   lLongMonths[9] = "October";
   lLongMonths[10] = "November";
   lLongMonths[11] = "December";
   return lLongMonths;
}

function getShortMonths()
{
   var lShortMonths = new Array(12);	

   lShortMonths[0] = "Jan";
   lShortMonths[1] = "Feb";
   lShortMonths[2] = "Mar";
   lShortMonths[3] = "Apr";
   lShortMonths[4] = "May";
   lShortMonths[5] = "Jun";
   lShortMonths[6] = "Jul";
   lShortMonths[7] = "Aug";
   lShortMonths[8] = "Sep";
   lShortMonths[9] = "Oct";
   lShortMonths[10] = "Nov";
   lShortMonths[11] = "Dec";
   return lShortMonths;
}
-->
