/** move the HDTV to the specified x,y location. */
 public void setLocation(int x, int y) {
   xLoc = x;
   yLoc = y;
   body.setLocation(x + bodyX, y + bodyY);
   bezel.setLocation(x + bezelX, y + bezelY);
   onButton.setLocation(x + onX, y + onY);
   volSlider.setLocation(x + volSliderX, y + volSliderY);
   volLevel.setLocation(x + volLevelX, y + volLevelY);
 }