function openW(strona,width_,height_,sc){
         new_window = window.open(strona,'strona','width='+width_+',height='+height_+',toolbars=no,resizeble="no",scrollbars='+sc);
}

var licznik = 0

function init() {	
	 foto(); 
}

function foto() {
	document.getElementById("logotyp").src=img[licznik];
	licznik = licznik + 1
	if (licznik>2) licznik = 0;
	setTimeout ("foto()",5000); 
}