/* 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>Klinika Tornero</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> Klinika Tornero <span>■</span> </div>');
  okno.document.writeln('</body>');
  okno.document.writeln('</html>');
  okno.document.close();
  return false;
}

function sd(id,visibility)  // setdisplay
{
 if(document.getElementById)
 {
  var obj = document.getElementById(id);
  if(obj)
  {
   obj.style.display = visibility?"block":"none";
  }
 }
}

function ha()   //hide aal
{
sd('r8',0);sd('r7',0);sd('r6',0);sd('r5',0);sd('r4',0);sd('r3',0);sd('r2',0);sd('r1',0);
}

