ns6 = (document.getElementById) && !(document.all)? true:false;
if (screen) {
  s_win=screen.width;
  w_win=screen.height;
} else {
  s_win=1024;
  w_win=768;
}

function przesunWarstwe(id,X,Y){
    document.getElementById(id).style.left = X+"px";
    document.getElementById(id).style.top = Y+"px";
}

function wpiszWarstwe(nazwaWarstwy,text) {
   document.getElementById(nazwaWarstwy).innerHTML = text;
}

function schowajWarstwe(nazwaWarstwy) {
   document.getElementById(nazwaWarstwy).innerHTML = '';
   document.getElementById(nazwaWarstwy).style.left = -1000+"px";
   document.getElementById(nazwaWarstwy).style.top = -1000+"px";
   document.getElementById(nazwaWarstwy).style.width = 10+"px";
}

function zoom(wys, szer, adres) { 
     if(!document.getElementById) {
        zoomOkno(wys, szer, adres);
        return
     }
//     text = "<a HREF=\"javascript:schowajWarstwe('foto');\"><IMG HEIGHT="+wys+" WIDTH="+szer+" SRC='"+adres+"' ALT='' hspace=10 vspace=10 BORDER=0></a>";
     text = "<a HREF=\"javascript:schowajWarstwe('foto');\"><IMG HEIGHT="+wys+" WIDTH="+szer+" SRC='"+adres+"' ALT='' style='margin:10px;border:0px;'></a>";
//     pozClose=szer-12;
//     text =  text+"<div style=\"position:absolute; top:11;left:"+pozClose+";\"><a HREF=\"javascript:schowajWarstwe('foto');\"><IMG HEIGHT=21 WIDTH=21 SRC='assets/close.gif' ALT='' BORDER=0></a></div>";
     pozClose=szer-1;
     text =  text+"<div style=\"position:absolute; top:0;left:"+pozClose+"px;\"><a HREF=\"javascript:schowajWarstwe('foto');\"><IMG HEIGHT=21 WIDTH=21 SRC='assets/close.gif' ALT='' BORDER=0></a></div>";
//     document.getElementById('foto').style.width = szer+"px";
     document.getElementById('foto').style.height = 20+wys+"px";
     wpiszWarstwe('foto',text);
     winW = (ns6)? window.innerWidth-16 : document.body.offsetWidth-20
     winH = (ns6)? window.innerHeight : document.body.offsetHeight
     ekranX=(document.all)?document.body.scrollLeft:window.pageXOffset
     ekranY=(document.all)?document.body.scrollTop:window.pageYOffset
     if(ekranY>0){} else {
       ekranY=document.lastChild.scrollTop;
       winH = w_win -160;
     }
     x=ekranX+(winW-szer)/2
     y =ekranY-10+(winH-wys)/2
     if(x<0) x=0;
     if(y<0) y=0;
//    p= window.pageYOffset;
//    s=document.body.scrollTop;
//    l=document.lastChild.scrollTop
//    ih=window.innerHeight
//    oh=document.body.offsetHeight
//    ch=document.body.clientHeight;
//    alert("pageYOffset="+p+", scrollTop="+s+", last="+l+", w_win="+w_win+", winH="+winH+", ih="+ih+", oh="+oh+", ch="+ch);
     przesunWarstwe('foto',x,y);
     szer=szer+20;
     document.getElementById('foto').style.width = szer+"px";
}

function zoomOkno(wys, szer, adres)
{
   skrol='no'
   if(wys+60>w_win) {
     w=w_win-60; 
     skrol='yes';
     y=0;
   } else {
     w=wys+5;
     y = (w_win - w)/2;
     y = Math.round(y)-30;
     if(y<5) y=0;
   };
   if(szer+20>s_win) {
     s=s_win;
     skrol='yes';
     x=0;
   } else {
     s=szer+20;
     x = (s_win - s)/2;
     x = Math.round(x)-10;
     if(x<5) x=0;
   };
   if(skrol=='no') {s=szer; w=wys;};
   parametry="resizable=yes,scrollbars="+skrol+",top="+y+",left="+x+",height="+w+",width="+s
   msg=open("","FOTO",parametry);
   msg.close(); 
   msg=open("","FOTO",parametry);
   msg.document.write("<HTML>\n<HEAD>\n<META content='text/html; charset=iso-8859-2' http-equiv=Content-Type></META>\n");
   msg.document.write("<TITLE>FOTO</TITLE>\n</HEAD>\n");
   msg.document.write("<BODY MARGINWIDTH=0 MARGINHEIGHT=0 TOPMARGIN=0 LEFTMARGIN=0>\n<center>");
   msg.document.write("<IMG HEIGHT="+wys+" WIDTH="+szer+" SRC='"+adres+"' ALT='' BORDER=0>");
   msg.document.write("</center>\n</BODY>\n</HTML>");
}
function okno(adres){
 msg=window.open(adres,'dzieci','location=no, menubar=no, personalbar=no, toolbar=no, directories=no, status=no, resizable=yes, scrollbars=1');
 msg.focus();
};

