var dol;
var gora;

function nadol(){
	document.getElementById('warstwaPrzewin').scrollLeft--;
	dol = setTimeout('nadol()',30);	
	clearTimeout(gora);
}

function dogory(){
	document.getElementById('warstwaPrzewin').scrollLeft++;
	gora = setTimeout('dogory()',30);	
	clearTimeout(dol);
}

function stoj(){
	clearTimeout(dol);
	clearTimeout(gora);
}


function displayWindow(adres,szerokosc,wysokosc){
        window.open(adres,'','width='+szerokosc+',height='+wysokosc+'toolbar=no,menubar=no,scrollbars=yes,resizable=no,status=no,location=no');
        }

function pokazHint(e,tekst){

					var IE = document.all?true:false; //detekcja przeglądarki					
					var obiekt = document.getElementById('divHint');
					
					if (IE) {					
							px=event.x+document.body.scrollLeft-125;
							py=event.y+document.body.scrollTop+30;
					} else {					
							px=e.pageX-125;
							py=e.pageY+30;
					}

					obiekt.style.left=px;
					obiekt.style.top=py;
					
					obiekt.innerHTML=tekst;
					obiekt.style.visibility='visible';
					
					alert(py);
}

function ukryjHint(){
					document.getElementById('divHint').style.visibility='hidden';
}
