// <![CDATA[
	// JavaScript Document
	function timerun2() {
	//var day="";
	//var month="";
	//var myweekday="";
	//var year="";
	newdate2 = new Date();
	mydate2 = new Date();
	//dston =  new Date('March 29, 2009 2:59:59');  //  29 March 2009, 02:59:59
	//dstoff = new Date('october 25, 2009 2:59:59'); // Sunday, 26 October 2008, 03:59:59  http://www.timeanddate.com/time/dst2009.html
	var myzone2 = newdate2.getTimezoneOffset();
	newtime2=newdate2.getTime();
	//------------------------------------
	var d = new Date()
	var gmtHours = -d.getTimezoneOffset()/60;
	//------------------------------------
	var zone2 = -gmtHours;  // references your time zone
	
	if ((newdate2 > dston) && (newdate2 < dstoff)) {  
	zonea2 = zone2 ;//- 1 ;
	plusminus = (gmtHours-1>0)?"+":"-";
	dst2 = "GMT" + plusminus + (gmtHours) + " DST";   //  (gmtHours-1)
	}
	else {
	zonea2 = zone2 ; 
	plusminus = (gmtHours>0)?"+":"-";
	dst2 = "GMT"+ plusminus + gmtHours + " Std";
	}
	var newzone2 = (zonea2*60*60*1000);
	newtimea2 = newtime2;//+(myzone2*60*1000);  //-newzone2;  // 
	mydate2.setTime(newtimea2);
	/*myday = mydate.getDay();
	mymonth = mydate.getMonth();
	myweekday= mydate.getDate();
	myyear= mydate.getYear();
	year = myyear;
	
	if (year < 2000)
	year = year + 1900; */
	myhours2 = mydate2.getHours();
	if (myhours2 >= 12) {
	myhours2 = (myhours2 == 12) ? 12 : myhours2 - 12; mm2 = " PM";
	}
	else {
	myhours2 = (myhours2 == 0) ? 12 : myhours2; mm2 = " AM";
	}
	myminutes2 = mydate2.getMinutes();
	if (myminutes2 < 10){
	mytime2 = ":0" + myminutes2;
	}
	else {
	mytime2 = ":" + myminutes2;
	}
	mysecs2 = mydate2.getSeconds();
	if (mysecs2 < 10){
	mys2 = ":0" + mysecs2;
	}
	else {
	mys2 = ":" + mysecs2;
	}
	//arday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
	//armonth = new Array("January ","February ","March ","April ","May ","June ","July ","August ","September ", "October ","November ","December ")
	//ardate = new Array("0th","1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th","11th","12th","13th","14th","15th","16th","17th","18th","19th","20th","21st","22nd","23rd","24th","25th","26th","27th","28th","29th","30th","31st");
	// rename locale as needed.

	var time2 = (myhours2 + mytime2 + mys2 + mm2 + ", " + dst2);
	document.getElementById('time2a').innerHTML= time2;
	
	}
// ]]>