<!--
function load_photo(album, file) {
	parent.document.getElementById("gallery_photo_bg").style.visibility = "visible";
//	parent.document.getElementById("gallery_photo").style.visibility = "visible";
	parent.document.getElementById("gallery_photo_bg").innerHTML = "<div style='background: #000000; background-color: #000000; opacity: 1; filter: alpha(opacity=100);'><a href='#' onclick='unload_photo();'>close</a><br><br><img src='" + album + "/" + file + "'/></div>";
	return false;
}
function unload_photo() {
	document.getElementById("gallery_photo_bg").style.visibility="hidden";
//	document.getElementById("gallery_photo").style.visibility="hidden";
	return false;
}
//-->
