   <!--    
   function StartClock24() {

     TTime = new Date();                       // A new Date object
     CurHour = TTime.getHours();               // The Hours 
     CurMin  = TTime.getMinutes();             // Mins
     CurSec  = TTime.getSeconds();             // Secs
     TheTime  = CurHour;                       // Add them
     TheTime += ((CurMin < 10) ? ':0' : ':') + CurMin;
     TheTime += ((CurSec < 10) ? ':0' : ':') + CurSec;

     document.CForm.Clock24.value = TheTime;

     setTimeout('StartClock24()',1000);

   }

-->
