// JavaScript Document

function enlargeImage(image) {
	if (document.getElementById("enlarged_image") != null) {
		document.body.removeChild(document.getElementById("enlarged_image"));	
	}

	var div = document.createElement("div");
	div.style.border = "4px solid #FFF";
	div.style.backgroundColor = "#FFF";
	div.style.position = "fixed";
	div.style.width = "300px";
	div.style.zIndex = "200";
	div.style.top = "200px";
	div.style.left = "50%";
	div.style.marginLeft = "-150px";
	
	
	var img = document.createElement("img");
	img.src = "resize/resize_enlarge.php?img="+image;
	
	
	div.appendChild(img);
	div.innerHTML += "<div style='text-align:center; padding:2px; font-family:Arial; font-size:12px; cursor:pointer;' onclick='hideLarge()'>close image</div>";
	div.id = "enlarged_image";
	
	document.body.appendChild(div);

}

function hideLarge() {
	if (document.getElementById("enlarged_image") != null) {
		document.body.removeChild(document.getElementById("enlarged_image"));	
	}
}
