function footer_bottom_align()
{
	footer=document.getElementById('footer');
	if (document.documentElement.scrollHeight<=document.documentElement.clientHeight) 
	{
		footer.style.top=parseInt(document.documentElement.scrollHeight-50)+'px';
	}
	setTimeout("footer.style.visibility='visible'", 10);
}
