function OpenImg(src,width,height) {

  image = window.open('','','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=no, scrollbars=no, status=no');
  image.focus();
  image.document.write('<html><head><title>ROTO stavební elementy s.r.o.</title></head><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" style="background-image: url(\'images/engine/loading.gif\'); background-repeat: no-repeat; background-position: center center; " onClick="window.close();"><img src="'+src+'" width="'+width+'" height="'+height+'" ></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=no, scrollbars=no, status=no');
  image.focus();
  image.document.close();
}

function OpenPgScrolls(src,width,height) {

  image = window.open(src,'','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=no, scrollbars=yes, status=no');
  image.focus();
  image.document.close();
}