//
// Needs dhtml.js included before this file
//

//
// Sets the background image of the given object
//
// param: who    The id of the object to be handled
// param: image  The name of the image to be set as a new backgound
//
function setBackground(who, image)
{
   // Only do this, if the browser supports a DOM-Model
   if(DOM)
      getElement("id", who, null).style.backgroundImage = "url(" + image + ")";
}

