function newImage(arg) {
  if (document.images) {
    rslt = new Image();
    rslt.src = arg;
    return rslt;
  }
}

function r_on(i) {
  if (document.images) { 
    if (document[i].src.indexOf("down") < 0) {
      document[i].src = "images/" + i + "_over.gif"; 
    }
  }
}

function r_off(i) {
  if (document.images) { 
    if (document[i].src.indexOf("down") < 0) {
      document[i].src = "images/" + i + ".gif"; 
    }
  }
}

var today = new Date();
        var month = today.getMonth();
        var months = new Array();
        months[0] = "Jan";
        months[1] = "Feb";
        months[2] = "Mar";
        months[3] = "Apr";
        months[4] = "May";
        months[5] = "Jun";
        months[6] = "Jul";
        months[7] = "Aug";
        months[8] = "Sep";
        months[9] = "Oct";
        months[10] = "Nov";
        months[11] = "Dec";
        var day = today.getDate();
        var year = today.getYear();
        year += (year < 1900) ? 1900 : 0;
        var hour = today.getHours();
        var ampm;

        ampm = (hour >= 12) ? " PM" : " AM"
        if (hour > 12) { 
                hour = hour - 12;
                };
        if (hour < 1) {
                hour = 12;
                }
        
        var mins = today.getMinutes();
        



