<!--
function checkLocation()
{
if(onloadY < (document.body.clientHeight-footer.offsetHeight))
	footer.style.pixelTop = document.body.clientHeight-footer.offsetHeight;
else
	footer.style.pixelTop = onloadY;
footer.style.visibility = 'visible';
}


function InitIE(){
	onloadY = footer.offsetTop;
	window.onresize = checkLocation; 
	checkLocation();
}

function InitNN()
{
	onloadY = document.layers.footer.pageY;
	if(onloadY < (window.innerHeight - document.layers.footer.clip.height))
		document.layers.footer.pageY = window.innerHeight - document.layers.footer.clip.height;
	document.layers.footer.pageX = 0;
	document.layers.footer.visibility = "show";
}

function init()
{
	if (navigator.appName == "Netscape") {
    InitNN();
  }else{
    InitIE();
  }
}

//-->