	//pakiet pomocniczych funkcji uniezalezniajacych od rodzaju przegladarki
	
	function univdhtml_InnerTekst(spanId,text) { 
	if (document.getElementById){ // nn6 
		document.getElementById(spanId).innerHTML=text; 
	}else if (document.all){ // ie 
		document.all[spanId].innerHTML=text; 
	} 
	else if (document.layers){ // nn4 
		x = document.layers[spanId]; 
		x.document.open();
		x.document.write(text);
		x.document.close();
	}
	} 
	

	////////////// dymek z detekcj? kursora myszy
	var itb, IE=document.all?true:false;
if(!IE) { document.captureEvents(Event.MOUSEMOVE);	document.onmousemove=mousePos;	var netX, netY; }
function init() {	if(IE) itb=document.all.itb; else itb=document.getElementById("itb");	b=document.body;}
function mousePos(e) {	netX=e.pageX;	netY=e.pageY;}
function itbmove(ix, iy) {	init();	if(itb.style.visibility!='visible') return;	if(IE) {msx=event.clientX; msy=event.clientY;} else {msx=netX-b.scrollLeft; msy=netY-b.scrollTop;}
	temix=msx+ix;
	if(temix<0) temix=0;
	tmp=b.clientWidth-msx-ix-itb.offsetWidth-20;
	if(tmp<0) {temix+=tmp; if(temix<0) temix=0;}
	itb.style.left=b.scrollLeft+temix+"px";

	temiy=msy+iy;
	if(temiy<0) temiy=0;
	tmp=b.clientHeight-msy-iy-itb.offsetHeight-15;
	if(tmp<0) {
		tmp=msy-15-itb.offsetHeight;
		if(tmp>=0) temiy=tmp;
	}
	itb.style.top=b.scrollTop+temiy+"px";
}
function itbshow(ix, iy, src) { init(); itb.style.visibility='visible'; itb.innerHTML=src; itbmove(ix,iy); }
function itbclose() {init();	itb.style.visibility='hidden';	itb.innerHTML=''; itb.style.left=0;	itb.style.top=0;}
function itbmsg(tmsg) {text="<table cellspacing=0 cellpadding=0 class='DYMEKtable'><tr><td class='DYMEKtd'><img src='"+tmsg+"' height=200 border=0 /></td></tr></table>"; itbshow(5,20,text);}
function itblmove() {itbmove(10,20);}
	

	////////////////
	
	
	
	function univdhtml_SetVisibility(spanId,visibility) {	
	if (document.getElementById){ // nn6 
		document.getElementById(spanId).style.visibility=visibility; 
	}else if (document.all){ // ie 
		document.all[spanId].style.visibility=visibility; 
	}
	}
	
	
	function univdhtml_Style(spanId) {	
	if (document.getElementById){ // nn6 
		return document.getElementById(spanId).style; 
	}else if (document.all){ // ie 
		return document.all[spanId].style; 
	}
	}  	
	
	
	function univdhtml_getElem(spanId) {
	if (document.getElementById){ // nn6 
		return document.getElementById(spanId); 
	}else if (document.all){ // ie
		return document.all[spanId]; 
	} 
	} 
	
