function showPic( fileName )
{
    var Okienko = window.open( "", "", "top=0, left=0, width=450, height=300" );
    var docCode = '<html><head><title>'+fileName+'</title></head>'
    + '<body onload="javascript:window.resizeTo(document.obraz.width,document.obraz.height+78);">'
    + '<img src="'+fileName+'" style="position:relative; left:-10px; top:-15px;" name="obraz">'
    + '</body></html>';
    Okienko.document.open();
    Okienko.document.write(docCode);
    Okienko.document.close();
    Okienko.focus();
}

function showPic1( fileName )
{
    var Okienko = window.open( "", "", "top=0, left=0, width=450, height=300, scrollbars=yes" );
    var docCode = '<html><head><title>'+fileName+'</title></head>'
    + '<body onload="javascript:window.resizeTo(document.obraz.width+25,document.obraz.height+78);">'
    + '<img src="'+fileName+'" style="position:relative; left:-10px; top:-15px;" name="obraz">'
    + '</body></html>';
    Okienko.document.open();
    Okienko.document.write(docCode);
    Okienko.document.close();
    Okienko.focus();
}
