<!--
function init(){
        if(document.getElementById){
        obj = document.getElementById("button");
        obj.style.top = "-170px";
        }
}

function slideDown(){
        if(document.getElementById){
                if(parseInt(obj.style.top) < 320){
                        obj.style.top = parseInt(obj.style.top) + 14 + "px";
                        setTimeout("slideDown()",50);
                }
        }
}
//-->