////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  function N_SC(id)
  {
  	var Switch = self.document.getElementById('s-' + id);
  	var Childs = self.document.getElementById('c-' + id);
  	
//  	alert(arg_SwitchId);
  	if(Switch && Switch.getAttribute("N_Opened") == "1")
  	{
  		Switch.setAttribute("N_Opened", "0");
  		Switch.src = Switch.getAttribute("N_ClosedSrc");
  		Childs.className = "Hidden";
  	}
  	else if (Switch)
  	{
  		Switch.setAttribute("N_Opened", "1");
  		Switch.src = Switch.getAttribute("N_OpenedSrc");
  		Childs.className = Childs.getAttribute("N_Class");
  	}
  }
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
