////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  function N_SC(id)
  {
    var Me = self.document.getElementById('Me' + id);
    var Childs = self.document.getElementById('Childs' + id);
    var img = self.document.getElementById('Navigator_Img' + id);;
    if(Me && Childs && Me.getAttribute("N_Opened") == "1")
    {
      Me.setAttribute("N_Opened", "0");
      Me.className = Me.getAttribute("class2");
      Childs.className = "N_H";
      if (img)
      {
      	img.src = '/images/navigator/list_closed.gif';
      }

    }
    else if (Me && Childs)
    {
      Me.setAttribute("N_Opened", "1");
      Me.className = Me.getAttribute("class1");
      Childs.className = "N_In";
      if (img)
      {
      	img.src = '/images/navigator/list_opened.gif';
      }
    }
    else
    {
//      alert(id);
    }
  }
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

