function OpenImg(src,alt,width,height) {

  var scbr = 'no';
  var w = width;
  var h = height;

  if (width>=(document.body.clientWidth-20)) {
	w = document.body.clientWidth-20;
	scbr = 'yes';
  }

  if (height>=(document.body.clientHeight-20)) {
	h = document.body.clientHeight-20;
        if (w<(document.body.clientWidth-20)) w = w-0+16;
	scbr = 'yes';
  }

  image = window.open('','','left=10,top=10,toolbar=no,width='+w+',height='+h+',resizable=no,scrollbars='+scbr+',status=no,menubar=no,dialog=yes');
  image.focus();
  image.document.write('<html><head><title>Radim Drtílek - DRTILEKSOFT</title></head><body style="cursor: hand; cursor: pointer; margin: 0px; padding: 0px; background: #ffffff; border:0;"><img id="img" src="'+src+'" width="'+width+'" height="'+height+'" alt="'+alt+'" onClick="window.close();"></body></html>');
  image.document.close();

}

function OpenPg(src,width,height) {

  image = window.open(src,'','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=yes, scrollbars=yes, status=yes');
  image.focus();
}

