<!-- Begin
// functions for the date scripts and other updated April 27 2009 - copyright Digital Media Enterprises 2009

function MakeArraya(size) {
 this.length = size;
 for(var i = 1; i <= size; i++) {
  this[i] = "";
 }
 return this;
}

function MakeArrayb(size) {
 this.length = size;
 for(var i = 1; i <= size; i++) {
  this[i] = "";
 }
 return this;
}

function showtime () {
 var now = new Date();
 var year = now.getYear();
 var month = now.getMonth() + 1;
 var date = now.getDate();
 YearStringObject = new String(year);
 if (YearStringObject.length < 4) { 
  year = '20' + YearStringObject.substr(1,2);
 }

 Month = new MakeArrayb(12);
 Month[1]="Jan";
 Month[2]="Feb";
 Month[3]="Mar";
 Month[4]="Apr";
 Month[5]="May";
 Month[6]="Jun";
 Month[7]="Jul";
 Month[8]="Aug";
 Month[9]="Sep";
 Month[10]="Oct";
 Month[11]="Nov";
 Month[12]="Dec";

 var timeValue = "";
 timeValue += (Month[month]) + " ";
 timeValue += date + ", " + year + "    ";
 document.write (timeValue);
}




// End -->
