<!-- //


function PowiekszZdjecie(url, width, height, info, tytul)
{
var okno = null;
	if(okno) okno.close();
	ScrWidth = 640;
	ScrHeight = 480;
	if(window.screen)
  	{
   	ScrWidth = window.screen.width; 
		ScrHeight = window.screen.height;
  	}
  	PosX = Math.round((ScrWidth - width) / 2);
  	PosY = Math.round((ScrHeight - height) / 2);
  	width = width;
  	height = height;
  	okno = window.open("", "zdjecie", "menubar=no,toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=no,copyhistory=no,width=" + width + ",height=" + height + ",left=" + PosX + ",top=" + PosY);
  	okno.document.clear();
	okno.document.write("<html><head><title>" + tytul + "</title><meta http-equiv='content-type' content='text/html; charset=ISO-8859-2'></head><style type=\"text/css\">body { margin:0; padding:0; }</style><body><div align=\"center\" vertical-align=\"middle\"><br/><br/><img src=\""+ url +"\" alt=\"" + info + "\" title=\"" + info + "\" border=\"1" + "\" onclick=\"window.close();\" /></div></body></html>");
	okno.document.close();
  	okno.focus();	
}
function setBookImage(actualImg){
    if(actualImg < 1) 
    {
    actualImage = 0;
    actualImg =0;
    }else if(actualImg >= img.length)
    {
    actualImage =img.length-1;
    }else
    {
    actualImage = actualImg;
    }
    if(actualImg < (img.length) && (img.length) > 1)
    {
    document.getElementById("prawo").src='images/podglad_w_prawo.gif'; 
    document.getElementById("prawo2").style.display=''; 
    document.getElementById("prawo3").style.display=''; 
    document.getElementById("zdjecie").src=img[actualImg];
    var strLink ='';
   strLink = "javascript:PowiekszZdjecie('"+img[actualImg]+"', 626, 800, 'Kliknij aby zamknąć okno', 'Składnicka Księgarska Sp. z o.o.');"
    document.getElementById("powieksz1").href=strLink;
    document.getElementById("powieksz2").href=strLink;
    
    }else
    {
    document.getElementById("prawo").src='images/podglad_w_prawo_off.gif'; 
      
        document.getElementById("prawo2").style.display='none'; 
         document.getElementById("prawo3").style.display='none'; 
    }
    if(actualImg >= (img.length-1))
    {
    document.getElementById("prawo").src='images/podglad_w_prawo_off.gif';  

    document.getElementById("prawo2").style.display='none'; 
    document.getElementById("prawo3").style.display='none'; 
    }
    
if(actualImg > 0)
    {
    document.getElementById("lewo").src='images/podglad_w_lewo.gif';  
      document.getElementById("lewo2").style.display=''; 
      document.getElementById("lewo3").style.display=''; 
    }else
     {
    document.getElementById("lewo").src='images/podglad_w_lewo_off.gif';  
      document.getElementById("lewo2").style.display='none'; 
      document.getElementById("lewo3").style.display='none'; 
    }
    
    if(img.length == 1)
    {
       actualImage = 1;
    document.getElementById("prawo").src='images/podglad_w_prawo_off.gif'; 
    document.getElementById("lewo").src='images/podglad_w_lewo_off.gif'; 
       
       document.getElementById("prawo2").style.display='none'; 
       document.getElementById("lewo2").style.display='none'; 
       
       document.getElementById("prawo3").style.display='none'; 
       document.getElementById("lewo3").style.display='none'; 
    }
    
}

// -->
