// JavaScript Document
// otwiera okienko o danych rozmiarach X i Y
function zoom(foto, x, y, pos)
{
	if(pos)
	{
		x_offset = (window.screen.width-x)/2;
		y_offset = (window.screen.height-y)/2;
	}
	else
	{
		x_offset = 0;
		y_offset = 0;
	}
	
	okno = window.open("zoom.php?foto="+foto+"", "title", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width="+x+",height="+y+",left="+x_offset+",top="+y_offset+"");
}

//otwiera okno
function openpopup(adres, nazwa) {
        if (nazwa=="")
                nazwa="popwindow";
        window.open(adres, nazwa, 'toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=yes,directories=no,status=no,resizable=yes,copyhistory=no,width=500,height=400,top=50,left=50');
}

