
function obrazek(imgsrc,xx,yy)
{
  xxw=xx+40; yyh=yy+40;
  wx=",width="+xxw+",height="+yyh;


  nove_okno=window.open("","okno","left=50,top=20,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes"+wx)
  
  with (nove_okno)
   {
    
    document.writeln("<html><title>:: Zdravotní ústav se sídlem v Pardubicích - " +imgsrc+ " </title><body bgcolor=#FFFFFF leftmargin=0>");
    document.writeln("<center><a href='javascript: self.close(); '><img src=\""+imgsrc+"\" width="+xx+" height="+yy+" border=0 align=center></a></center>");
	document.writeln("</html>");
	resizeTo(xxw+15,yyh+15);
    location.reload();
	focus();
   }

}


function velky_obrazek(imgsrc,xx,yy)
{
  xxw=xx+50; yyh=yy+50;
  wx=",width="+xxw+",height="+yyh;
  
  if (yyh > 600)
  {
    yyh = 600;
	wx=",width="+xxw+",height="+yyh;
  }
  
  

  nove_okno=window.open("","okno","left=15,top=15,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,scrollbars=yes"+wx)
  
  with (nove_okno)
   {
    
    document.writeln("<html><title>:: Zdravotní ústav se sídlem v Pardubicích - " +imgsrc+ " </title><body bgcolor=#FFFFFF leftmargin=0>");
    document.writeln("<center><a href='javascript: self.close(); '><img src=\""+imgsrc+"\" width="+xx+" height="+yy+" border=0 align=center></a></center>");
	document.writeln("</html>");
	resizeTo(xxw+15,yyh+15);
    location.reload();
	focus();
   }

}

