<!--
  var timeValueLoc = ""
  var timeValueGMT = ""
var JSCActive = 0


function setMessage()
{
    now = new Date()


    timeLoc = setCustTimeLocal()
    timeValueGMT = now.toGMTString();
    

    window.status = timeValueLoc + "       " + timeValueGMT


    JSCTimeOutID = window.setTimeout('setMessage()',1000)
    JSCActive = 1
}

function setCustTimeLocal()
{
    var nowLoc = new Date();

    var hoursLoc = nowLoc.getHours();
    var minutesLoc = nowLoc.getMinutes();
    var secondsLoc = nowLoc.getSeconds();

    timeValueLoc = "" + hoursLoc;

    timeValueLoc += ((minutesLoc < 10) ? ":0" : ":") + minutesLoc;
    timeValueLoc += ((secondsLoc < 10) ? ":0" : ":") + secondsLoc;
    timeValueLoc += " CST"

    //Return timeValueLoc
}


-->

