function ConfigureControl(id, title)
{
  var _element = $(document.createElement('div'));
  var _header = $(document.createElement("div"));
  var _heading = $(document.createElement("h1"));

  _element.attr("id", id);
  _element.addClass("pane");
  _header.addClass("header");
  _heading.text(title);

  _header.append(_heading);
  _element.append(_header);

  this.getNode = function() { return _element[0]; }
}

function ConfigurationSection(data)
{

}
