Есть код:
<html>
<head>
<title>css-игра</title>
<script>
var t;
var l;
function top()
{t=document.im.style;
t.top = parseInt(t.top) + 1 + 'px';
setTimeout("top();",50);}
function left()
{l=document.im.style;
l.left = parseInt(l.left) + 5 + 'px';}
function right()
{l=document.im.style;
l.left = parseInt(l.left) - 5 + 'px';}
function bottom()
{t=document.im.style;
t.top = parseInt(t.top) - 5 + 'px';}
</script>
</head>
<body>
<p align="center">
<img name="im" src="http://sait-raznoe.do.am/pr/2/0.png" style="top:0px; left:0px; position : relative;">
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<input type="button" value="↑" onclick=bottom()>
<BR>
<input type="button" value="←" onclick=right()>        <input type="button" value="→" onclick=left()>
<BR>
<input type="button" value="↓" onclick=top()>
</p>
</body>
</html>
В опере выдаётся ошибка: "top is not a function". Причём в других браузерах всё нормально. Чем опера так отличилась7
P.S. - ошибку исправил изначально, пишу только из любопытства.