var crossobj=document.all? document.all.staticbanner : document.getElementById? document.getElementById("staticbanner") : document.staticbanner

function positionit(){

var dsocleft=document.all? document.body.scrollLeft : pageXOffset
var dsoctop=document.all? document.body.scrollTop : pageYOffset
var window_width=document.all? document.body.clientWidth : window.innerWidth

//if the user is using IE 4+ or NS6+
if (document.all||document.getElementById){
crossobj.style.left=738
//parseInt(dsocleft)+
//parseInt(window_width)-48
crossobj.style.top=dsoctop+85
}
//else if the user is using NS 4
else if (document.layers){
crossobj.left=732
//dsocleft+window_width-64
crossobj.top=dsoctop+54
}
}
setInterval("positionit()",200)
