﻿var curPop = null;
function clearCurrent() {
	// Hide the pop-up menu that is currently displayed.
	if (null != curPop)
		curPop.style.display = "";
	curPop = null;
}

function popup(top, Desc) {
	clearCurrent();	  
	// Display a new menu option.
	// Position and display the pop-up menu.
	var elpop = document.getElementById(Desc);
	elpop.style.top = top +'px';
	elpop.style.display = "block";
	curPop = elpop;
}

// **********************************************************
// funkce pro otevření samostatného okna o dané sířce a výsce
// **********************************************************

function OpenWin(page,imgwidth,imgheight){

var win=window.open('','','toolbar=no,location=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=no,copyhistory=no,left=50,top=50,width='+imgwidth+',height='+imgheight);
	
	win.document.write("");
	win.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml'>");
	win.document.write("<head>\n<meta http-equiv='Content-Type' content='text/html; charset=windows-1250' />\n<link href='../styles/window.css' rel='stylesheet' type='text/css' />\n<title>Střechy stromský - Fotogalerie</title>\n</head>\n");
	win.document.write("<body>\n<a href='#' onclick='window.close();'><img src='"+page+"' alt='Pro zavření klikněte'/></a><center><div id='navigation'><a href='#' onclick='window.close();'>Zavřít</a></div</center>\n</body>\n</html>");
}

function pageLoad() {
	var el = document.getElementById("page");
	var eltop = document.getElementById("page_top");
	var elbottom = document.getElementById("page_bottom");
	eltop.style.height = el.offsetHeight;
	elbottom.style.height = el.offsetHeight;
}
