function hbRSSItem (guid,
    msgIndex,
    title,
    description,
    icon,
    startTime,
    stopTime,
    itemIndex)
{
  this.iconFilename = icon;
  this.guid = guid;
  this.msgIndex = msgIndex;
  this.title = title;
  this.description = description;
  this.itemIndex = itemIndex;
  
  if (startTime && (0 < startTime.length))
  {
    this.startTime = startTime [0].getText ();
  }
  if (stopTime && (0 < stopTime.length))
  {
    this.stopTime = stopTime [0].getText ();
  }
}

hbRSSItem.prototype.destroy = function ()
{
  this.iconFilename = undefined;
  this.guid = undefined;
  this.msgIndex = undefined;
  this.title = undefined;
  this.description = undefined;
  this.itemIndex = undefined;
  this.startTime = undefined;
  this.stopTime = undefined;
}
