if (!document.getElementById && document.all) document.getElementById = document.all;
function Menu(schovej1,schovej2,ukaz)
{
  document.getElementById(schovej1).style.display = 'none';
  document.getElementById(schovej2).style.display = 'none';
  document.getElementById('menu_vychozi').style.display = 'none';
  document.getElementById(ukaz).style.display = 'inline';
}

function image_open(file,popis,sirka,vyska) {
    if ((sirka>(screen.availWidth-20)) || (vyska>(screen.availHeight-40)))
            okno = window.open( "","",'width='+(screen.availWidth/1.5)+',height='+(screen.availHeight/1.5)+',top=100,left=100,location=no,toolbar=no,directories=no,status=no,resizable=yes,scrollbars=yes,copyhistory=no' );
    else
            okno = window.open( "","",'width='+sirka+',height='+vyska+',top=100,left=100,location=no,toolbar=no,directories=no,status=no,resizable=no,scrollbars=no,copyhistory=no' );
	var str_buffer = new String (
		"<html>\n"+
		"<head>\n"+
		"	<title>" + popis + " - Click to close</title>\n"+
		"</head>\n"+
		"<body style=\"margin: 0; padding: 0; background: white;\">\n"+
		"<a href=\"javascript:window.close();\"><img src=\"" + file + "\" alt=\"Kliknutím na obrázek zavřete okno\" style=\"width: " + sirka + "; border: 0px; margin: 0px\" /></a>\n"+
        "</body>\n</html>");
	okno.opener = self;
	okno.focus();
	var okno_doc = okno.document;
	okno_doc.write (str_buffer);
	okno_doc.close();
}