function fotoopen(id,text,cesta,imageWidth,imageHeight) {
  image_width = parseInt(imageWidth)+19;
  image_height = parseInt(imageHeight);
  newWindow = window.open("",""+id+"","width="+image_width+",height="+image_height+",top="+((screen.height - image_height)/2)+",left="+((screen.width - image_width)/2)+",scrollbars=yes");
  newWindow.document.open();
  newWindow.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1250"><title>'+text+'</title></head><body style="margin: 0px;">');
  newWindow.document.write('<img src="'+cesta+'" width="'+imageWidth+'" height="'+imageHeight+'" title="'+text+'\n(Kliknutím na obrázek okno uzavřete)" onclick="self.close();" />');
  newWindow.document.write('</body></html>');
  newWindow.document.close();
  newWindow.focus();
}

function ramopen(zdroj) {
  var width = 530+19;
  var height = 270;
  aPopUp = window.open(zdroj,"New","width="+width+",height="+height+",top="+((screen.height - height)/2)+",left="+((screen.width - width)/2)+",scrollbars=yes,resizable=no,location=no,toolbar=no");
}