This method can be used to remove an object from the DOM. The object would have
been added with the addDOMObject method. The name provided there is used here to
remove the object.
var box = scene.getBoxById("testBox");
if (box)
{
box.removeDOMObject("employee");
}