var IsIE = 0;
var IsIE7 = 0;

function Init()
{
	if((navigator.appName.indexOf("Explorer") >= 0) && (navigator.appVersion.indexOf('4.0') >= 0 ))
	{
		IsIE  = 1;
		if (navigator.appVersion.indexOf('7.0') >= 0 )
			IsIE7  = 1;
	}
}

function HandleScroll()
{
	if (IsIE)
	{
		if (IsIE7)
		{
			document.all.Footer.style.bottom = -document.body.scrollTop;
		}
		else
		{
			document.all.Footer.style.position='static';
			document.all.Footer.style.position='absolute';
		}
	}
}

