// Floater class
function Notification(sID)
  {
  // Properties
  this.ID = sID;

  if(IE)
    this.Style = document.all[sID].style;
  else if(NS6)
    this.Style = document.getElementById(sID).style;
  else if(NS)
    this.Style = document.layers[sID];

  // Methods
  this.Position = function(iLeft, iTop)
    {
    this.Style[LEFT] = Page.Left() + iLeft;
    this.Style[TOP] = Page.Top() + iTop;
    this.Left = iLeft;
    this.Top = iTop
    }

  this.Toggle = function()
    {
    var Visibility = this.Style.visibility.toUpperCase();

		this.Position(this.Left, this.Top);

    if(Visibility == "HIDDEN" || Visibility == "HIDE" || Visibility == "")
      this.Style.visibility = "visible";
    else
      this.Style.visibility = "hidden";
    }
  }

