function closexl() {
	imgElem = document.getElementById("xl_image");
	imgElem.src = "pics/empty.gif";
	xllayer = document.getElementById("screenshots_xl");
	xllayer.style.display = "none";
}

function openxl(hash) {
	
	xllayer = document.getElementById("screenshots_xl");
	
	switch (_cre8cms_user_browser) {
		case "ie":
		complSiteHeight = document.body.scrollHeight;
		complSiteWidth = "100%";
		if (_cre8cms_user_browserversion == "4.0 (compatible; MSIE 6.0; Windows NT 5.0)") {
			complSiteWidth = document.body.scrollWidth;
		}
		break;

		case "op":
		complSiteHeight = document.body.scrollHeight;
		complSiteWidth = "100%";
		break;
		
		default:
		complSiteHeight = document.height;
		complSiteWidth = "100%";
	}
	xllayer.style.height = complSiteHeight+"px";
	xllayer.style.width = complSiteWidth;
	
	imgElem = document.getElementById("xl_image");
	imageurl = "?cmd=download&hash="+hash;
	imgElem.src = imageurl;
	xllayer.style.display = "block";
	
	scroll(0, 0);
}
