function addDate_t() {
  var 
    mon, day, now, hour, min, ampm, time, str, tz, end, beg, mid;
	
    mon = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
    day = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
    now = new Date();
    hour = now.getHours();
    min = now.getMinutes();
    ampm = (hour>=12)?"pm":"am";
    hour = (hour==0)?12:(hour>12)?hour-12:hour;
    min = (min<10)?"0"+min:min;
    
    tz = "";
    str = now.toTimeString();
    end = str.lastIndexOf(" ");
	tz=" " + str.charAt(end+1) + str.charAt(end+2) + str.charAt(end+3);
    tz = "";
    	
    time = hour + ":" + min + ampm + tz + ", <nobr>" + day[now.getDay()] + " " + mon[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear() + "</nobr>";
    document.write("<FONT style='FONT-SIZE: 10px' face='verdana' COLOR='000080' class='TopShared'>" + time + "</font>&nbsp;&nbsp;");
}