		/*
		DHTML analog a_clock II (By Erik Arvidsson at http://webfx.eae.net)
		Slight modifications to script made by Dynamicdrive.com
		Permission granted to Dynamicdrive.com to include script in archive
		For this and 100's more DHTML scripts, visit http://dynamicdrive.com
		*/

		//specify a_clock size in pixels
		var a_clocksize=170

		function updatePointers() {
		var now = new Date();

		secondsPointer.style.rotation = now.getSeconds() * 6;
		minutesPointer.style.rotation = now.getMinutes() * 6 + now.getSeconds() / 10;
		hoursPointer.style.rotation = now.getHours() * 30 + now.getMinutes() / 2;
		}

		if (document.all&&window.print){
		window.attachEvent("onload", initVMLa_clock);
		window.attachEvent("onresize", resizeObjects);
		}

		function initVMLa_clock() {
		resizeObjects();
		updatePointers();
		window.setInterval("updatePointers()", 1000);

		}

		function resizeObjects() {
		var size = Math.min(a_clocksize, a_clocksize);
		a_clock.style.pixelWidth = size - 2*(size * 0.045);
		a_clock.style.pixelHeight = size - 2*(size * 0.045);

		a_clock.childNodes.item(0).childNodes.item(0).weight = size * 0.000;

		secondsPointer.childNodes.item(0).childNodes.item(0).weight = size * 0.012;
		minutesPointer.childNodes.item(0).childNodes.item(0).weight = size * 0.020;
		hoursPointer.childNodes.item(0).childNodes.item(0).weight = size * 0.025;

		}

		function toggle(sId) {
		var el = document.getElementById(sId);

		el.style.display = (el.style.display == "none") ? "block" : "none";
		}

