// ---------------------------------------------------------------------------------
// ------ PODPOWIEDZ
// ---------------------------------------------------------------------------------
function Chmurka(T,t) {
	T.title='';
	T.parentNode.lastChild.style.display=t?'block':'none';
}
// ---------------------------------------------------------------------------------





// ---------------------------------------------------------------------------------
// ------ FUNKCJA DO OKNA POPUP
// ---------------------------------------------------------------------------------
function disableEventPropagation(event) {
	if(event.stopPropagation) {
		// this code is for Mozilla and Opera
		event.stopPropagation();
	}
	else if(window.event) {
		// this code is for IE
		window.event.cancelBubble = true;
	}
} 
// ---------------------------------------------------------------------------------





