
	<!--
		var tempEl;
		var tmr;
		function showLargeImg(n, h, w)
		{	
			//alert('sL');
			//alert(typeof tempEl);
			//if (tempEl) document.body.removeChild(tempEl);
			//alert('sL1');
			var targ;
			if (!e) var e = window.event;
			if (e.target) targ = e.target;
			else if (e.srcElement) targ = e.srcElement;
			if (targ.nodeType == 3) targ = targ.parentNode;

			var posy = 0; posx = 0;
			
			var tmpx = targ.offsetWidth+"";
			var tmpy = targ.offsetHeight+"";
			posx = (parseFloat(tmpx.replace(/px/, ""))/2);
			posy = (parseFloat(tmpy.replace(/px/, ""))/2);

			while( targ != null ) {
				posy += targ.offsetTop;
				posx += targ.offsetLeft;
				targ = targ.offsetParent;
			}
			
			posy = posy - (h/2);
			posx = posx - (w/2);
			//alert('sL2');
			var tEl;
			tEl = typeof tempEl;
			//alert(tEl);
			if (tEl=='undefined') tempEl = document.createElement('div');
			//alert('1');
			tempEl.innerHTML = '<img src="/images/footer/'+n+'large.png" />';
			//alert('2');
			tempEl.className = 'popupFooterImage';
			tempEl.style.top = posy+'px';
			tempEl.style.left = posx+'px';
			tempEl.style.width = w+'px';
			tempEl.style.height = h+'px';
			tempEl.id = "doNotDestroy";
			document.body.appendChild(tempEl);
			document.body.scrollTop = document.body.scrollHeight;
			clearTimeout(tmr);
			tmr = setTimeout("rem()", 2000);
		}
		
		function rem()
		{
			if (tempEl) document.body.removeChild(tempEl);
		}

	-->
