function RunTime()
{ 
	currentDate = new Date();

	with(currentDate)
	{
		utcTime = getUTCHours();
		MinSec = ":" + plusZero(getMinutes()) + ":" +  plusZero(getSeconds());
		
		sumwinMonth = getUTCMonth() + 1;
		
		if ((sumwinMonth>=4) && (sumwinMonth<=10))
		{ 
			//summer time:
			sbUTCdiff  = -7
		}
		else
		{
			//winter time:
			sbUTCdiff  = -7
		}
		sbHr = adjustHr(((utcTime + (24-sbUTCdiff)) >= 24) ? ((utcTime + (24-sbUTCdiff)) - 24) : (utcTime + (24-sbUTCdiff)));
		sbt = (plusZero(sbHr) + MinSec);
		//sbTimeHTML=eval(doc+ '["sbTime"]'+htm);
		//writeTo(sbTimeHTML,sbt);
		document.frm.sbTime.value=sbt;
	}

	setTimeout("RunTime()", 1000);
}

function plusZero(num) { return ((num <= 9) ? ("0" + num) : num); }

function adjustHr(hour) { return (hour >= 24) ? hour - 24 : hour; }

