document.write(
'
'
+'
'
+''
+'
'
);
var footline_gloScrollTop = null
function footline_getWindowHeight() {
if (window.innerHeight) return window.innerHeight
else return document.body.offsetHeight;
}
function footline_getScrollPos() {
if (window.pageYOffset) return window.pageYOffset
else return document.body.scrollTop;
}
function footline_getElementHeight(el) {
if (document.all) { return el.offsetHeight; }
else { return parseInt(el.style.height); }
}
footline_scrollFunc = function (timeout) {
if (timeout) { window.setTimeout("footline_scrollFunc(true);", 50) }
if (footline_getScrollPos() == footline_gloScrollTop) return;
var el = document.getElementById("footline_footline");
el.style.position = "absolute";
el.style.top = eval(footline_getWindowHeight() + footline_getScrollPos() - footline_getElementHeight(el) - 4);
} // END document.body.onscroll()
document.body.onscroll = footline_scrollFunc;
//document.body.onload = footline_scrollFunc;
//window.onscroll = function () { window.setTimeout("scrollFunc(true);", 50) };
window.setTimeout("footline_scrollFunc(true)", 50);