document.write('<style type="text/css"> #topbar{ position:absolute; border: 0px; visibility: hidden; z-index: 100; } </style>');
var startX = 0 //set x offset of bar in pixels
var startY = 5
var verticalpos="fromtop" //enter "fromtop" or "frombottom"

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}


function staticbar(){

    barheight=document.getElementById("topbar").offsetHeight
    barwidth=document.getElementById("topbar").offsetWidth
    var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
    var d = document;
    function ml(id){
        var el=d.getElementById(id);
        el.style.visibility="visible"
        if(d.layers)el.style=el;
        el.sP=function(x,y){this.style.right=x+"px";this.style.top=y+"px";};
        el.x =  startX;
        el.x = ns ? pageXOffset + innerWidth - barwidth -20 : iecompattest().scrollLeft + iecompattest().clientWidth-barwidth-20;

        if (verticalpos=="fromtop") {
        el.y = startY;
        }
        else{
        el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
        el.y -= startY;
        }
        return el;
    }
    window.stayTopLeft=function(){
        if (verticalpos=="fromtop"){
        var pY = ns ? pageYOffset : iecompattest().scrollTop;
        ftlObj.y += (pY + startY - ftlObj.y)/8;
        }
        else{
        var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
        ftlObj.y += (pY - startY - ftlObj.y)/8;
        }
        ftlObj.sP(ftlObj.x, ftlObj.y);
        setTimeout("stayTopLeft()", 10);
    }
    ftlObj = ml("topbar");
    stayTopLeft();
}

function winresize()
{
    var winh;
    winh = (window.innerHeight ? window.innerHeight : (document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.offsetHeight));
    if (verticalpos=="fromtop") {
      startY = winh / 8 - imageH / 2;
    }
    staticbar();
}

if (window.addEventListener)
window.addEventListener("load", winresize, false)
else if (window.attachEvent)
window.attachEvent("onload", winresize)
else if (document.getElementById)
window.onload=staticbar
window.onresize=winresize
document.write('<div id=topbar><a href=\"'+url+'\" title="on-line заявка на изготовление пружин" target="_self"><img src='+imageurl+' width='+imageW+' height='+imageH+' border=0 alt="on-line заявка на изготовление пружин"></a></div>');
