Zibba, не работает, пробовал заместо textInd подставлять 1 нифига
а передовать надо так
onclick="down(121,0);
onclick="down(122,1);
хотя я с пробелом и без него пробовыл не выходит.
так делал тож ничего
<script type="text/javascript">
var top[];
var top[0] = 0;
var top[1] = 0;
function up(index){
textInd=1;
if(index==121){textInd=0;}
var text = document.getElementById(index);
top[textInd] = top[textInd] - 30;
text.style.top = top[textInd]+'px';
}
function down(index){
textInd=1;
if(index==121){textInd=0;}
var text = document.getElementById(index);
top[textInd] = top[textInd] + 30;
text.style.top = top[textInd]+'px';
}
</script>