Можно на примере? Возможно, где-то ошибся, не работает.
<script language="JavaScript">
function moveTxt()
{
if (document.getElementById('anil').style.top < 50%)
{
document.getElementById('anil').style.top +=2%;
setTimeout("moveTxt()", 50);
}
}
</script>