function scrollToBottom()
{
	lyr = document.getElementById('footer');
        lyr.style.top = document.body.scrollTop + document.body.clientHeight - 18;
	setTimeout("scrollToBottom()", 100);
}
