function LMenuItem (nID, sName, nParentID, surl, cTarget, nLevel, isFolder, bSemprePres, tTitoloFinestra, bBloccaRamo) 
{
  this.ID       = nID;
  this.Name           = sName;
  this.parentID       = nParentID;  
  this.url        = surl;
  this.Target = cTarget;
  this.level = nLevel;  
  this.Folder = isFolder;
  this.SemprePres = bSemprePres;
  this.TitoloFinestra = tTitoloFinestra;
  if (bBloccaRamo ==null)
  {
    this.BloccaRamo = false;
  }
  else
  {
    this.BloccaRamo = bBloccaRamo;
  }
}


