// Find the height of the browser area and set the footer to this position
myHeight = 0;
myScroll = 0;
if( typeof( window.innerWidth ) == 'number' ) 
{
	//Non-IE
	myHeight = window.innerHeight;
	myScroll = window.innerHeight + window.scrollMaxY;
} 
else if( document.documentElement && ( document.documentElement.clientHeight ) ) 
{
	//IE 6+ in 'standards compliant mode'
	myHeight = document.documentElement.clientHeight;
	myScroll = document.body.clientHeight;
}
else if( document.body && ( document.body.clientHeight ) ) 
{
	//IE 4 compatible
	myHeight = document.body.clientHeight;
	myScroll = document.body.clientHeight;
}

newHeight = myHeight -44;
if (myHeight >= myScroll)
{
	document.getElementById("Foot").style.position = "absolute";
	document.getElementById("Foot").style.top = newHeight + "px";
}
