var dX = 100, dY = 100; // Начальные координаты document.getElementById('square').onclick = function () { dX += 20; dY -= 20; this.style.left = dX + "px"; this.style.top = dY + "px"; if (dY < 20) this.onclick = new Function; };