/* ukaz obrazek */



function ukazObrazek(src, width, height, alt)
{
  var okno = open("", "_blank", "width="+(width+100)+",height="+(height+60)+",scrollbars");
  okno.document.open();
  okno.document.writeln('<html>');
  okno.document.writeln('<head>');
  okno.document.writeln('<title>Domov pro seniory Velké Březno</title>');
  okno.document.writeln('<meta http-equiv="imagetoolbar" content="no" />');
  okno.document.writeln('</head>');
  okno.document.writeln('<link rel="stylesheet" type="text/css" href="style/imgstyle.css" /><body>');
  okno.document.writeln('<img alt="" src="'+src+'" />');
  okno.document.writeln('<div> <span>■</span> Domov pro seniory Velké Březno <span>■</span> </div>');
  okno.document.writeln('</body>');
  okno.document.writeln('</html>');
  okno.document.close();
  return false;
}


