/*Copyright 2008 Denis Krivov*/

function LoadImage(Image) {
	document.getElementById("photo").src = "/img/gallery/md_"+Image+".jpg";
	document.getElementById("photo").style.visibility = "visible";
	document.getElementById("phototable1").style.visibility = "visible";
	document.getElementById("phototable2").style.visibility = "visible";
	document.getElementById("thumbs").style.zIndex = "1";
	document.getElementById('download').href = "/downloads/index.php?file=lg_"+Image+".jpg";
	document.getElementById('download').target = "_blank";
}

function HideImage() {
	document.getElementById("photo").style.visibility = "hidden";
	document.getElementById("phototable1").style.visibility = "hidden";
	document.getElementById("phototable2").style.visibility = "hidden";
	document.getElementById("thumbs").style.zIndex = "10";
}
