function setPosition()
{
	var top = (document.all? document.documentElement.scrollTop : window.pageYOffset);
	SetCookie('tabTop', top);
}

onload = function()
{
	if(GetCookie('tabTop'))
	{
		if(document.all)
		{	
			document.documentElement.scrollTop = GetCookie('tabTop');
		}else{
			scrollTo(0, GetCookie('tabTop'));
		}
		DeleteCookie('tabTop');
	}
}