/**
 *
 * @return void
 **/
function onPageLoad(server_time)
{
    var flashvars = {
		clockSkin: 'flash/clock/skins/skin001.png',
		digitWidth: '20',
		digitHeight: '32',
		separatorWidth: '11',
		ampmWidth: '23',
		ampm: 'no',
		digitsColor: '4a75b9',
		secondsColor: '55a603',
        UTCTime: server_time,
		timeOffset: '0'
	};
    swfobject.embedSWF(
    	'flash/devDigitalClock.swf', // path to the widget
    	'devDigitalClock',
    	'200', // width of the widget
    	'70', // height of the widget
    	'8',
    	'flash/expressInstall.swf',
    	flashvars,
    	{scale: "noscale", wmode: "transparent"}
    );
}


