var pict = new Image();
var h;
var w;


function galeria(obr){

   pict.src = obr;
   h = pict.height;
   w = pict.width;

   if(window.screen){
    aw=screen.availWidth;
    ah=screen.availHeight;
   }else{
    aw=640;
    ah=450;
   }

    ustawienia=
    "left=" + (aw-w)/2 + ","
    +"top=" + (ah-h)/2 + ","
    +"screenX=" + (aw-w)/2 + ","
    +"screenY=" + (ah-h)/2 + ","
    +"width=" + (w+25) + ","
    +"height=" + (h+25) + ","
    +"innerWidth=" + w + ","
    +"innerHeight=" + h + ","
    +"toolbar=no,"
    +"location=no,"
    +"directories=no,"
    +"status=yes,"
    +"menubar=no,"
    +"scrollbars=yes,"
    +"resizable=no";
    
    
    
    //if (pict.complete) {
   	 noweOkienko = window.open("",'obrazek',ustawienia); 
    /* }  else if (pict.complete) {
   	 noweOkienko = window.open("",'obrazek',ustawienia); 
    } else {
   	 noweOkienko = window.open("",'obrazek',ustawienia); 
    } */

   noweOkienko.document.write(
   "<html><head><meta http-equiv=\"Content-type\" content=\"text/html; charset=iso-8859-2\"><title>www.checsport.pl - galeria</title>\n"
   +"<style type=\"text/css\"> body {margin-left: 3px; margin-top: 3px;}</style></head><BODY bgcolor=#000000>\n"
   +"<a href='javascript:window.close()'><img src="+ obr +" width=\"" + w + "\" height=\"" + h + "\"  alt=' Zamknij ' border=0></a></div>\n"
   +"</body></html>"

   ); 

   noweOkienko.document.close();
   noweOkienko.focus();


}//function galeria


function wczytaj(obr) {

   pict.src = obr;
   h = pict.height;
   w = pict.width;

} //function wczytaj


