function doTheClock() {
   window.setTimeout( "doTheClock()", 1000 );
   t = new Date();
   if(document.all || document.getElementById){
      clockplaceholder.innerHTML = t.toLocaleString(); // - Displays based on Client's Timezone Settings
      //clockplaceholder.innerHTML = t.toString(); - Would display all in Milliatry Hours and Timezone
   }else{   
      self.status = t.toLocaleString(); // - If above script doesn't work, puts time in status bar.
   }
}