
function scrollerBottom(str){				  
					var w=window.innerWidth-19;
					
					/*
					if (detekcja()=="MSIE" && objScroller.clientHeight<document.documentElement.clientHeight)
						objScroller.style.height=(document.documentElement.clientHeight-7)+"px";
				  else if (objScroller.clientHeight<window.innerHeight) objScroller.style.height=(window.innerHeight-7)+"px";
					*/
					
					//alert(window.innerHeight);
					
					objScroller.style.position="absolute";
					objScroller.style.zIndex=100;					
					objScroller.style.top=(window.innerHeight-h)+"px";
					objScroller.style.backgroundColor="yellow";					
					objScroller.style.display="block";
					objScroller.innerHTML='<div style="height:'+h+'px;width:'+w+'px;">'+str+'</div>';
					
					document.body.style.paddingBottom=30+"px";
					
					goScrollerBottom();
}


function goScrollerBottom(){
					objScroller.style.top=window.innerHeight+document.documentElement.scrollTop-h+"px";
					setTimeout("goScrollerBottom()",5);
}
