

<!--   <!-- CURRENT TIME -->

     var day="";             var month="";
     var myweekday="";       var year="";	 
     newdate = new Date();   mydate = new Date();
     dston =  new Date('April 4, 1999 2:59:59');
     dstoff = new Date('october 31, 1999 2:59:59');
     var myzone = newdate.getTimezoneOffset();
     newtime=newdate.getTime();

     var zone = 5;  // references your time zone

     if (newdate > dston && newdate < dstoff ) 
	 {    zonea = zone - 1 ;
          dst = "  Pacific Daylight Savings Time";
     }
     else 
	 { zonea = zone ; dst = "  Eastern Standard Time";
	 }
	 
     var newzone = (zonea*60*60*1000);
     newtimea = newtime+(myzone*60*1000)-newzone;
     mydate.setTime(newtimea);
     myday = mydate.getDay();
     mymonth = mydate.getMonth();
     myweekday= mydate.getDate();
     myyear= mydate.getYear();
     year = myyear;

     if (year < 2000)      // Y2K Fix, Isaac Powell
     year = year + 1900;   // http://onyx.idbsu.edu/~ipowell
     //year = year - 2000; // Jeremy Hawver

     myhours = mydate.getHours();
     // myhours = (myhours += 1) // DAYLIGHT SAVINGS ?
     if (myhours >= 12) 
	 {     myhours = (myhours == 12) ? 12 : myhours - 12; mm = " PM";
     }
     else 
	 {     myhours = (myhours == 0) ? 12 : myhours; mm = " AM";
     }

     myminutes = mydate.getMinutes();
     if (myminutes < 10)
	 {     mytime = ":0" + myminutes;
     }
     else 
	 {     mytime = ":" + myminutes;
     };

     arday = new 

Array("Sun","Mon","Tues","Wed","Thur","Fri","Sat")
armonth = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec")
ardate = new 

Array("0th","1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th","11th","12th","13th","14th","15th","16th","17th","18th","19th","20th","21th","22th","23th","24th","25th","26th","27th"

,"28th","29th","30th","31st");  // rename locale as needed.

var time = (

"<B><font face='Century Gothic' color='000000' style='font-size: 9pt'> &nbsp&nbsp&nbsp&nbsp&nbsp" 


+ arday[myday]       + ", " 
+ armonth[mymonth]   + " "
+ ardate[myweekday]  + " " 
+ year               + " &nbsp &nbsp &nbsp "
+ myhours 
+ mytime 
+ mm
+ "</font></font></font></B>"
);

document.write(time);

//-->   <!-- to add AM/PM add + mm to end --> 
