function powieksz1(adres, w_idth, h_eight, x_poz, y_poz){ 
window.alert('a')
   window.open(adres, 'powiekszenie', 'width=' + w_idth + ',height=' + h_eight + ',resizable=1, scrollbars=0, menubar=0, toolbar=0, location=0, top=' + y_poz + ', left=' + x_poz);
}
function powieksz2(urlObrazka, tytul, opcje){ 
   var okno; 
   if (okno){ 
       okno.close(); 
   } 
   okno = window.open('', tytul, opcje); 
   okno.document.open(); 
    var t; 
    t = '<head><title> ' + tytul + ' </title> </head> <body leftmargin=0 topmargin=0 bgcolor="#000000">'; t += '<a href="javascript:window.close()" title="close">';
    t += '<img src="' + urlObrazka + '" alt=".">';
    t += '</a>'
    t += '</body>'; 
   okno.document.write(t); 
   okno.document.close(); 
   okno.focus(); 
}

function powieksz3(urlObrazka, tytul, opcje){ 
   var okno; 
   if (okno){ 
       okno.close(); 
   } 
   okno = window.open('', tytul, opcje); 
   okno.document.open(); 
    var t; 
    t = '<head><title> ' + tytul + ' </title> </head> <body leftmargin=0 topmargin=0 bgcolor="#000000">';t += '<center><a href="javascript:window.close()" title="close">';
    t += '<img src="' + urlObrazka + '" alt="." border="0">';
    t += '</a>'
    t += '</center></body>'; 
   okno.document.write(t); 
   okno.document.close(); 
   okno.focus(); 
}