// $Revision: 4071 $

/*function TArrow(id, idDelimiter, numOfArrow)
{
  this.NumOfArrow = numOfArrow;
  this.Id = id;
  this.IdDelimiter = idDelimiter;
  this.Generate = function()
  {
    return "<span style='display: none' id='" + this.Id + "'>" + 
      "<img style='display: block' src='" + Environment.getResourceDirectory() + "img/etc/Arrow"+String(this.NumOfArrow) + ".PNG'>" + EndSpan();
  }
  this.Hide = function()
  {
    document.getElementById(this.Id).style.display = "none";
    document.getElementById(this.IdDelimiter).innerHTML = "";
  }
  this.Show = function()
  {
    document.getElementById(this.Id).style.display = "";
    document.getElementById(this.IdDelimiter).innerHTML = "&nbsp";
  }
}*/