| var ENetArch = 
{
	Panel :
 	{
		TreeView :
		{
			nCurrent: 0,
			
			Expand : function (nID) 
			{ location="?nFolderID=" + this.nCurrent + "&nID=" + nID + "&bStatus=Exp"; },
			
			Collapse : function (nID) 
			{ location="?nFolderID=" + this.nCurrent + "&nID=" + nID + "&bStatus=Col"; },
			Selected : function (nID, bStatus) 
			{ location="?nFolderID=" + this.nCurrent + "&nID=" + nID + "&bStatus=" + bStatus; },
		},
	},
}
/*	=======================================
	Copyright 1998 - 2010 - E Net Arch
	This program is distributed under the terms of the GNU 
	General Public License (or the Lesser GPL).
	======================================= */
 |