Well, the browser doesn't need to refresh, but it does need up to the moment information on positioning. Since the window dimensions are set for FF on page load, FF will always think the window is the same size it was when loaded. To change this, substitute this for the script's original function staticit():
Code:
function staticit(){ //function for IE4/ NS6
var w2=ns6? pageXOffset+(window.innerWidth-crosslogo.offsetWidth-20) : ietruebody().scrollLeft+w
var h2=ns6? pageYOffset+(window.innerHeight-crosslogo.offsetHeight-15) : ietruebody().scrollTop+h
crosslogo.style.left=w2+"px"
crosslogo.style.top=h2+"px"
}
Bookmarks