function doTheClock() {
  months = "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec".split(',')
  now = new Date()
  window.setTimeout("doTheClock()", 1000 );
  self.status = now.getDate()+' '+months[now.getMonth()]+' '+now.getFullYear()+' '+now.getHours()+':'+now.getMinutes()+':'+now.getSeconds();
}
function scrolling() {
  if (document.all)
    document.all['scroll'].innerText = '' + text + '';
  else if (document.layers) {
    document.layers['scroll'].document.open();
    document.layers['scroll'].document.write(' ' + text + ' ');
    document.layers['scroll'].document.close();
  }
  text = text.substring(1) + text.substring(0,1);
  setTimeout('scrolling()',300);
}
