function sm_slide(myDiv) {
    //define universal reference to "staticbanner"
    crossobj = document.all? document.all.myDiv :
    document.getElementById?
                   document.getElementById(myDiv) :
                   document.myDiv;
    setInterval("positionit()",200);
    }
function positionit(){
    //define universal dsoc left point
    var dsocleft = document.all? document.body.scrollLeft : pageXOffset
    //define universal dsoc top point
    var dsoctop = document.all? document.body.scrollTop : pageYOffset
    //define universal browser window width
    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=parseInt(dsocleft)+
                parseInt(window_width)/2+370;
           crossobj.style.top=dsoctop+12;
           }
    //else if the user is using NS 4
    else if (document.layers){
           crossobj.left=
           dsocleft+window_width/2+340
           crossobj.top=dsoctop+13
           }
}
onload = Function('sm_slide("staticbanner")');
