function otworzObrazek(obrazek,szer,wys){

var parametry= "menubar=no,toolbar=no,location=no,directories=no,status=no";
    parametry +=",scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width=" + szer + ",height=" + wys + ",top=160,left=170";
var tresc= "<html><head><style type=\"text/css\">";
    tresc+= "body,img,a{ margin: 0; padding: 0; border: none;}";
    tresc+= "</style></head><body>";
    tresc+= "<a href=\"#\" onclick=\"javascript:window.close()\">";
    tresc+= "<img src=\"" + obrazek + "\" /></a></body></html>";

obrazek= window.open('', 'nazwa', parametry);
obrazek.document.write(tresc);

}

