<!--
	// johnny cison
	// www.cison.com
	// if you're swiping the code, please leave my name in it.

	function zOpen(src,width,height)
	{
		if (document.getElementById)
		{
			var tempX, tempY;
			if (document.all)
			{
				tempX=parent.document.body.clientWidth + parent.document.body.scrollLeft;
				tempY=parent.document.body.clientHeight + parent.document.body.scrollTop;
			}
			else
			{
				tempX=parent.window.innerWidth + parent.window.pageXOffset;
				tempY=parent.window.innerHeight + parent.window.pageYOffset;
			}
			tempX=Math.round((tempX/2) - (parseInt(width)/2));
			if (tempX < 0)	{	tempX=0;	}
			tempY=Math.round((tempY/2) - (parseInt(height)/2));
			if (tempY < 0)	{	tempY=0;	}

			var ptrZ=parent.document.getElementById("frmZ");
			ptrZ.innerHTML='<a href="JavaScript:void zClose()"><img src="'+src+'" alt="image" width='+width+' height='+height+' border=0><br><img src="/i/n-close.gif" alt="close" width=81 height=13 border=0></a><br>';
			ptrZ.style.left=tempX;
			ptrZ.style.top=tempY;
			ptrZ.style.display='block';
			ptrZ.style.visibility='visible';
		}
	}

	function zClose()
	{
		if (document.getElementById)
		{
			var ptrZ=parent.document.getElementById("frmZ");
			ptrZ.style.visibility='hidden';
			ptrZ.style.display='none';
		}
	}
//-->
