var pop, IE=document.all?true:false;

if(!IE) {
	document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove=mousePos;
	var netX, netY;
}

function init() {
	if(IE) pop=document.all.pop; else pop=document.getElementById("pop");
	b=document.body;
}

function mousePos(e) {
	netX=e.pageX;
	netY=e.pageY;
}

function popPrzesun(pX, pY) {
	init();
	if(pop.style.visibility!='visible') return;
	if(IE) {myszX=event.clientX; myszY=event.clientY;}
		else {myszX=netX-b.scrollLeft; myszY=netY-b.scrollTop;}

	tempX=myszX+pX;
	if(tempX<0) tempX=0;
	tmp=b.clientWidth-myszX-pX-pop.offsetWidth-20;
	if(tmp<0) {tempX+=tmp; if(tempX<0) tempX=0;}
	pop.style.left=b.scrollLeft+tempX+"px";

	tempY=myszY+pY;
	if(tempY<0) tempY=0;
	tmp=b.clientHeight-myszY-pY-pop.offsetHeight-15;
	if(tmp<0) {
		tmp=myszY-15-pop.offsetHeight;
		if(tmp>=0) tempY=tmp;
	}
	pop.style.top=b.scrollTop+tempY+"px";
}

function popPokaz(pX, pY, src) {
	init();
	pop.style.visibility='visible';
	pop.innerHTML=src;
	popPrzesun(pX,pY);
}

function popZamknij() {
	init();
	pop.style.visibility='hidden';
	pop.innerHTML='';
	pop.style.left=0;
	pop.style.top=0;
}

function popKom(tresc) {
	if(IE) {
		text='<table cellspacing=2 cellpadding=2 style="border: 1px black solid;background-image: url(grafika/chmura/bg.png);"><tr><TD>'+tresc+'</font></TD></TR></table>';
		//text='<table cellspacing=0 cellpadding=0 border=0><tr height=6><td width=6 height=6 style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/tl.png,sizingMethod=scale);><img src=grafika/chmura/p.gif width=6 height=6></TD><TD style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/t.png,sizingMethod=scale);></TD><td width=8 height=6 style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/tr.png,sizingMethod=scale);><img src=grafika/chmura/p.gif width=8 height=6></TD></TR><tr><td width=6 style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/l.png,sizingMethod=scale);><img src=grafika/chmura/p.gif width=6 height=1></TD><TD style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/bg.png,sizingMethod=scale);>'+tresc+'</font></TD><td width=8  style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/r.png,sizingMethod=scale);><img src=grafika/chmura/p.gif width=8 height=1></TD></TR><tr height=10><td width=6 height=10 style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/dl.png,sizingMethod=scale);><img src=grafika/chmura/p.gif width=6 height=10></TD><TD height=10 style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/d.png,sizingMethod=scale);><img src=grafika/chmura/p.gif width=1 height=10></TD><td width=8 height=10 style=background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=grafika/chmura/dr.png,sizingMethod=scale);><img src=grafika/chmura/p.gif width=8 height=10></TD></TR></table>';
	} else {
		text='<table cellspacing=0 cellpadding=0 border=0><tr><td width=6 height=6><img src=grafika/chmura/tl.png width=6 height=6></TD><TD background=grafika/chmura/t.png></TD><td width=8 height=6><img src=grafika/chmura/tr.png width=8 height=6></TD></TR><tr><td width=6 background=grafika/chmura/l.png></grafika src=grafika/chmura/p.gif width=6 height=1></TD><TD background=grafika/chmura/bg.png>'+tresc+'</font></TD><td width=8 background=grafika/chmura/r.png><img src=grafika/chmura/p.gif width=8 height=1></TD></TR><tr><td width=6 height=10><img src=grafika/chmura/dl.png width=6 height=10></TD><TD background=grafika/chmura/d.png></TD><td width=8 height=10><img src=grafika/chmura/dr.png width=8 height=10></TD></TR></table>';
	}
	popPokaz(5,20,text);
}

function popLinkPrzesun() {
	popPrzesun(5,20);
}

function popSrodekPrzesun() {
	popPrzesun(-90,20);
}

function otworz(adres, x, y, tn) {
noweOkno = window.open(adres, 'okienko', 'menubar=no, toolbar=no, location=no, scrollbars='+tn+', resizable=no, status=no, width='+x+', height='+y+',top=100,left=300')
}

function ShowHide(id1, id2){
	obj = document.getElementsByTagName("div");
	if(obj[id1].style.display == 'block'){
		obj[id1].style.display = 'none';
	}
	else{
	obj[id1].style.display = 'block';
	obj[id2].style.display = 'none';
	}}
	
	function url(s) {
        var gourl = s.options[s.selectedIndex].value; window.self.location.href =
gourl;
}


