// (C) 2009 FocusTF.pl
// Funkcje do wyświetlania i ukrywania elementów na stronie WWW

function showBanner(_divId)
{
  var thisElement = document.getElementById(_divId);
  if (thisElement.style.display=="" || thisElement.style.display=="none")
	{
		thisElement.style.position = "fixed";
		thisElement.style.left = "262px";
		thisElement.style.top = "250px";
		thisElement.style.width = "570px";
		thisElement.style.height = "140px";
		thisElement.style.border = "1px solid #000000";
		thisElement.style.background = "#ffffff url(/pliki/pic/banner_video-oferty.jpg) no-repeat";
		thisElement.style.zIndex = 100;
    thisElement.style.display = "block";
	}
}

function hideBanner(_divId)
{
  var thisElement = document.getElementById(_divId);
  if (thisElement.style.display!="none") thisElement.style.display = "none";
}

function outLink(name)
{
	if ((name!=null) && (name!='')) pageTracker._trackPageview(name);
	else pageTracker._trackPageview('/wychodzace');
	return 0;
}