penso che l'errore sia nella ScrollDiv...
falla così...

function scrollDiv(){
if(bloccabool==false){
dataobj.style.top=parseInt(dataobj.style.top)-velocita+"px";
if (parseInt(dataobj.style.top)<altezza*(-1))
dataobj.style.top="5px";

}else if(bloccabool==true){
dataobj.style.top=parseInt(dataobj.style.top);
}

setTimeout("scrollDiv()",40);
}