// JavaScript Document
<!--

var getHeight = 0;
var x=130;

function openbox() {
getHeight = document.getElementById("desc").offsetHeight+25;
document.getElementById("description").style.height=x+'px';
document.getElementById("button").style.bottom=(13-x)+'px';
if(x>getHeight) {
clearTimeout(t);
return;
}
x++;
x++;
x++;
t=setTimeout('openbox()',0);
}

function closebox() {
document.getElementById("description").style.height=x+'px';
document.getElementById("button").style.bottom=(13-x)+'px';
if(x<=125) {
clearTimeout(t);
return;
}
x--;
x--;
x--;
t=setTimeout('closebox()',0);
}
