﻿function moveObjectTo(objectID, x, y)
{
    var dom = findDOM(objectID, 1);
    dom.left = x;
    dom.top = y;
}