function obrazek ($url)
{
  var NewWin = window.open('','','height=500 width=500');
  with (NewWin.document)
  {
    open ();
    writeln ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
    writeln ('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">');
    writeln ('<head>');
    writeln ('<meta http-equiv="Content-Language" content="cs" />');
    writeln ('<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />');
    writeln ('<meta http-equiv="Content-Style-Type" content="text/css" />');
    writeln ('<meta http-equiv="Content-Script-Type" content="text/javascript" />');
    writeln ('<meta http-equiv="Pragma" content="no-cache" />');
    writeln ('<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />');
    writeln ('<meta http-equiv="Expires" content="-1" />');
    writeln ('<meta name="description" content="" />');
    writeln ('<meta name="keywords" content="" />');
    writeln ('<link rel="stylesheet" type="text/css" href="../nahled.css" media="all" />');
    writeln ('<title>copyright Dogschool K9</title>');
    writeln ('<body>');
    writeln ('<img class="nahled" src="'+$url+'" alt="Dekorativní obrázek" onload="$sizeY = this.height; $sizeX = this.width; window.resizeTo($sizeX+30,$sizeY+89);"  onclick="window.close();" />');
    writeln ('<input name="closeWindow" value="Zavři okno" type="submit" onclick="window.close();" />');    
    writeln ('</body>');
    writeln ('</html>');
  }
  return false; 
}

