function okno(obrazek,szer,wys){
var halfSzer = Math.round(szer/2);
var halfWys = Math.round(wys/2);
var PolowaSzerEkranu = ((screen.width)/2)-halfSzer;
var PolowaWysEkranu = ((screen.height)/2)-halfWys;
var ustawienia="toolbar=no,location=no,directories=no,status=no,menubar=no,width="+szer+",height="+wys+",scrollbars=yes,resizable=no"
var obraz = window.open ("","okno",ustawienia)
if (obraz != null){
obraz.moveTo(PolowaSzerEkranu,PolowaWysEkranu);
obraz.document.write ("<html>\n\t<head>\n\t<title>EN ISO 9001:2000</title>\n\t</head>\n\t<body style='padding: 0; margin: 0; background: white; border: 0'>");
obraz.document.write ("<img src='"+obrazek+".gif'>");
obraz.document.write ("</body></html>");
obraz.focus();}
}
