function open_img(el,w,h){
  var img = new Image();
  img.src = el.getAttribute("href");
    
  if(!w)w=img.width;
  if(!h)w=img.height;
  
  var html = '<html><head><title>'+img.src+'</title></head><body style="margin:0;padding:0px;"><a href="javascript:window.close();" title="Zavøít okno"><img border="0" src="'+img.src+'"';
  if(w>0)html += ' width="'+w+'" height="'+h+'"';
  html +='/></a></body></html>';
  
  var blank=window.open("","_blank","left=10,top=10,menubar=0,scrollbars=0,resizable=1,location=0,toolbar=0,status=0,width="+w+",height="+h);
  blank.document.write(html);
  
  return false;
}
