function setPointer(theRow, thePointerColor,color2)
{
    if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') {
        return false;
    }

    var row_cells_cnt           = theRow.cells.length;
    for (var c = 0; c < row_cells_cnt; c++) {
        theRow.cells[c].bgColor = thePointerColor;
    }
         theRow.cells["ful"].style.backgroundColor = color2;

    return true;
} // end of the 'setPointer()' function

 




  function GetMonth(intMonth){
    var MonthArray = new Array("January", "February", "March",
                               "April", "May", "June",
                               "July", "August", "September",
                               "October", "November", "December")
    return MonthArray[intMonth]
    }

  function getDateStr(){
      var d = new Date();
   var t_date = d.getDate();      // Returns the day of the month

var t_mon = d.getMonth()+1;      // Returns the month as a digit
var t_year = d.getFullYear();  // Returns 4 digit year
var t_hour = d.getHours();     // Returns hours
var t_min = d.getMinutes();    // Returns minutes
var t_sec = d.getSeconds();    // Returns seocnds
//var t_mil = d.getMilliseconds;  // Returns Milliseconds

var curTime = 
    ((t_hour < 10) ? "0" : "") + t_hour + ":" 
    + ((t_min < 10) ? "0" : "") + t_min ; 


    if(t_year<1000) t_year+=1900
    var todayStr = t_date + "/" + t_mon +"/" + t_year + ", " + curTime ;

    return todayStr;
    }


