
ns4 = (document.layers) ? 1 : 0;
ie4 = (document.all) ? 1 : 0;
ns6 = (document.getElementById) ? 1 : 0;
old_static_l = 0;
old_static_t = 0;
function static_it() {
 this_id = 'jump_top';
if (ns4) {
 obj = document.layers[this_id];
l = pageXOffset + window.innerWidth - 50;
t = pageYOffset + window.innerHeight - 30;
} else if (ie4) {
 obj = document.all[this_id];
l = document.body.scrollLeft + document.body.clientWidth - 35;
t = document.body.scrollTop + document.body.clientHeight - 30;
} else if (ns6) {
 obj = document.getElementById(this_id);
l = pageXOffset + window.innerWidth - 60;
t = pageYOffset + window.innerHeight - 40;
}
 if ( (l != old_static_l) || (t != old_static_t) ) {
 if (ns4) {
 obj.left = l;
obj.top = t;
} else {
 obj.style.left = l;
obj.style.top = t;
}
 }
 old_static_l = l;
old_static_t = t;
}
static_it();
staticTimer = setInterval ("static_it()",500);
