function move_baner(wid,hei)
{
	var c = document.getElementById('baner');

	if (!c)
		return false;
	
	if (c.style)
		c = c.style;
	
	if (window.innerHeight)
		ih = window.innerHeight;
	else
		ih = document.body.clientHeight;
	
	if (window.innerWidth)
		iw = window.innerWidth;
	else
		iw = document.body.clientWidth;
	
	
	if (document.all) { 
		
		c.pixelLeft = wid + document.body.scrollLeft;
		c.pixelTop = hei + document.body.scrollTop;
	
	} else {
		c.right = wid + window.pageXOffset;
		c.top = hei + window.pageYOffset;
	
	}
setTimeout('move_baner(' + wid + ',' + hei+ ')',50); 

}