﻿// JavaScript Document
<!--

var from = escape(document.referrer);
var query = location.search;
var colorDepth = window.screen.colorDepth;			
var res = window.screen.width + "," + window.screen.height;

var okno = null;

function showPic(adresPic, tytulPic)
{
	width = 302;
        height = 302;
	ScrWidth = 640;
	ScrHeight = 480;
	zrodlo=adresPic;
	tytul=tytulPic;
	
	if(window.screen)
	{
		ScrWidth = window.screen.width; 
		ScrHeight = window.screen.height;
	}
	if(okno != null && !document.layers)
	{
	    okno.close();
	}
	
    PosX = Math.round((ScrWidth - width)/2);
    PosY = Math.round((ScrHeight - height)/2);
	
    okno = window.open('about:blank', "Pic", "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=" + width + ",height=" + height + ",left=" + PosX + ",top=" + PosY);
    
    with(okno.document) {
	open();
	write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>'+tytul+ '</title></head><body style="margin:0;padding:0;border:0"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle"><img src="'+zrodlo+ '" style=""/></td></tr></table></body></html>');
	close();
}
    
    
    okno.focus();	
}




var from = escape(document.referrer);

var okno = null;

function showForm()
{
	width = 480;
        height = 447;
	ScrWidth = 640;
	ScrHeight = 480;
	if(window.screen)
	{
		ScrWidth = window.screen.width; 
		ScrHeight = window.screen.height;
	}
	if(okno != null && !document.layers)
	{
	    okno.close();
	}
	
    PosX = Math.round((ScrWidth - width)/2);
    PosY = Math.round((ScrHeight - height)/2);
	
    okno = window.open("ksiega_window.php", "windowPopup", "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=" + width + ",height=" + height + ",left=" + PosX + ",top=" + PosY);
    okno.focus();	
}



function PowiekszZdjecie(url, width, height)
{
	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);
  	okno = window.open("showFoto.php?sciezka="+url, "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.focus();	
}


function PowiekszZdjecieAdm(url, width, height)
{
	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);
  	okno = window.open("../showFoto.php?sciezka="+url, "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.focus();	
}


//-->