//agresivny baner
function agBanner(){

  if (!document.getElementById('idAgBan')) return;
	if (is.ie) 	{
		scrw=document.body.clientWidth
		scrh=document.body.clientHeight

		atop = (scrh/2) - 50;
		aleft = ((scrw - 996) / 2) + 10;

	}	else {
		scrw=window.innerWidth
		scrh=window.innerHeight

		atop = (scrh/2) + 90;
		aleft = ((scrw - 996) / 2) - 10;
	}


	document.getElementById('idAgBan').style.left= aleft + 'px';
	document.getElementById('idAgBan').style.top= atop + 'px';

	document.getElementById('idAgBan').style.visibility='visible';
	agBannHide=setTimeout('agBannerHide()',60000);
}

function agBannerHide(){
  if (!document.getElementById('idAgBan')) return;
  document.getElementById('idAgBan').style.visibility='hidden';
}


