//menu

MaxGraf=2		//liczba grafik
MaxStan=2
obrazki=new Array(MaxGraf*MaxStan)
nazwy=new Array(MaxGraf*MaxStan)
next=0

dodaj_grafike("l1","../../img/l1_")
dodaj_grafike("l2","../../img/l2_")

function dodaj_grafike(nazwa,plik){
	var a
	for (a=0;a<MaxStan;a++){
		nazwy[next]=new String()
		nazwy[next]=nazwa+a
		obrazki[next]=new Image()
		obrazki[next++].src=plik+a+".gif"
		}
}

function pstryk(nazwa,stan){
	var i
	for (i=0;nazwa+stan!=nazwy[i];i++);
        document.images[nazwa].src = obrazki[i].src
}

//popup

function openBig(){
	picturesWindow=window.open("html/pictures.html","","toolbar=0,menubar=0,location=0,directories=0,status=0,resizable=0,scrollbars=0,titlebar=0,width=300,height=300,left=200,top=200");
}

function openBigPic(width_px,height_px,fileName){
	picturesWindow=window.open(fileName,"","toolbar=0,menubar=0,location=0,directories=0,status=0,resizable=0,scrollbars=0,titlebar=0,width="+width_px+",height="+height_px+",left=20,top=20");
}

function openBigPicNews(fileName){
	picturesWindow=window.open(fileName,"","toolbar=0,menubar=0,location=0,directories=0,status=0,resizable=0,scrollbars=0,titlebar=0,width=300,height=300,left=200,top=200");
}
