function ShowHide(kogo)
{	var tt = document.getElementById(kogo);
	if(tt.style.display=='')
		tt.style.display='none';
	else
		tt.style.display='';
}
function __ShowPopupRoz(url,width,height) 
{	var okienko = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=no,menubar=no,statusbar=no' );
}
function __ShowPopup(url) 
{	var okienko = window.open(url,"displayWindow",'width=300,height=300,resizable=1,scrollbars=no,menubar=no,statusbar=no' );
}
function Animuj(jak,co)
{	var tt = document.getElementById(co);
		tt.src='gfx/bullet_ani.gif';
	//alert('tt.src='+tt.src);
}
function DeAnimuj(jak,co)
{	var tt = document.getElementById(co);
		tt.src='gfx/bullet.gif';
}

