function top(){
	x = document.body.scrollLeft;
	y = document.body.scrollTop;
	step = 2;
	
	while ((x != 0) || (y != 0)) {
		scroll (x, y);
		step += (step * step / 300);
		x -= step;
		y -= step;
		if (x < 0) x = 0;
		if (y < 0) y = 0;
	} 
	scroll (0, 0);
}


function initialize(){
    comboobj=document.all? document.all.staticcombo : document.getElementById? document.getElementById("staticcombo") : document.layers? document.staticcombo : 0
	
    windowwidth=(screen.width-900)/2 + 925
    windowheight=window.innerHeight? window.innerHeight-180 : document.body.clientHeight-180
	
    if (!comboobj)
    return

    if (document.all || document.getElementById){
        combowidth=comboobj.offsetWidth
        comboheight=comboobj.offsetHeight
        setInterval("staticit_dom()",50)
        comboobj.style.visibility="visible"
    }
    else if (document.layers){
        combowidth=comboobj.document.width
        comboheight=comboobj.document.height
        setInterval("staticit_ns()",50)
        comboobj.visibility="show"
    }
}

function staticit_dom(){
    var pageoffsetx=document.all? document.body.scrollLeft : window.pageXOffset
    var pageoffsety=document.all? document.body.scrollTop : window.pageYOffset
        comboobj.style.left=pageoffsetx+windowwidth-combowidth
        comboobj.style.top=pageoffsety+windowheight-comboheight
}

function staticit_ns(){
    comboobj.left=pageXOffset+windowwidth-combowidth
    comboobj.top=pageYOffset+windowheight-comboheight
}

window.onload=initialize