/*
var nn=(navigator.appName.indexOf("Netscape")!=-1);
var dD=document,dH=dD.html,dB=dD.body,px=dD.layers?'':'px';
function floatBanner(iX,iY,id)
{
    var L=dD.getElementById?dD.getElementById(id):dD.all?dD.all[id]:dD.layers[id];		
    this[id+'O']=L;
    if(dD.layers)L.style=L;
    L.nX=L.iX=iX;
    L.nY=L.iY=iY;
    L.P=function(x,y)
    {
        this.style.left=x+px;
        this.style.top=y+px
    }
    L.Fm=function()
    {
        var pX, pY;
        if (nn) 
        {
            pX=(this.iX >=0)?0:innerWidth;	
            pY=pageYOffset;	
            if(this.iY<0)pY+=innerHeight;	
        }
        else 
        {
            pX=(this.iX >=0)?0:dH.clientWidth;	
            pY=dB.scrollTop;	
            if(this.iY<0)pY+=dH.clientHeight;	
        }	        
        this.nX+=.1*(pX+this.iX-this.nX);this.nY+=.1*(pY+this.iY-this.nY);this.P(this.nX,this.nY);
        setTimeout(this.id+'O.Fm()',33);
    }
    return L;
}
//floatBanner(7,7,'leftbanner').Fm();
floatBanner(854,7,'rightbanner').Fm();
*/



