function drawUp(containerID)
{
	try
	{
		var wrapper = document.getElementById(containerID);
		if(wrapper)
		{
			var cHeight = (wrapper.clientHeight) ? wrapper.clientHeight : ((wrapper.innerHeight) ? wrapper.innerHeight : wrapper.offsetHeight);  
	
			topLinkCount = Math.round(cHeight/400);
			if(topLinkCount>1)
			{
				for(i=1; i<=topLinkCount; i++)
				{
					wrapper.innerHTML +='<a href="#" class="to_up" title="К началу страницы" style="top: ' +(i*400)+ 'px;"></a>';
				}
			}
		}
	}
	catch(e)
	{
		
	}
}