<!--  


function display_c(){
var refresh=1000; // Refresh rate in milli seconds
mytime=setTimeout('display_ct()',refresh)
}

function display_ct() {
var months=new Array(13);
months[1]="Jan";
months[2]="Feb";
months[3]="Mar";
months[4]="Apr";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="Aug";
months[9]="Sep";
months[10]="Oct";
months[11]="Nov";
months[12]="Dec";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    
year = year + 1900; 


//get current local time

  var hours = time.getHours()
  var minutes = time.getMinutes()
  var seconds = time.getSeconds()

  var suffix = "AM";
  if (hours >= 12) {
  suffix = "PM";
  hours = hours - 12;
  }
  if (hours == 0) {
  hours = 12;
  }

  if (minutes < 10)
  minutes = "0" + minutes

  if (seconds < 10)
  seconds = "0" + seconds;

var x="<font color=black><b>"+lmonth + " " + date + "," + " " + year + "</font>" + ", " + "<b>" + hours + ":" + minutes + ":" + seconds + " " + suffix + "</b>";

document.getElementById('ct').innerHTML = x;

tt=display_c();
}



//  -->