okno = null;
function show(foto, nadpis, sirka, vyska) {
	if (okno != null)
	if (!okno.closed) okno.window.close(okno);
	okno = window.open("", "picture", "width=" + sirka + ", height=" + vyska);
	okno.document.write('<title>' + nadpis + '</title>');
	okno.document.write('<body topmargin="0" leftmargin="0">');
	okno.document.write('<img alt="CLOSE" src="' + foto + '" onClick="javascript: window.close(self)">');
	okno.window.focus();
}

function Display(elementID)
{
var id;   
    if (document.getElementById(elementID).style.display == "none")
	{
		document.getElementById(elementID).style.display = "";
		document.getElementById("podrobnedve").style.display = "none";
	}else{
		document.getElementById(elementID).style.display = "none";
		document.getElementById("podrobnedve").style.display = "";
	}
};