var TREE1_FORMAT = [
	0, 																																	// 0  integer, X coordinate of the tree
	0, 																																	// 1  integer, Y coordinate of the tree
	false,																															// 2  boolean, button images flag: it true then tree will have clickable button images; 
	[ '', '',  ipath+'/design/images/b.gif' ],													// 3  array of strings, button images
	[ 23,16,0 ],																												// 4  array of integers: width and height of button image
	true, 																															// 5  boolean, folder images flag: it true then tree will have folder images
	[ ipath+'img/tree/plus.gif', 
		ipath+'img/tree/minus.gif', 
		ipath+'img/tree/dir.gif' ], 																			// 6  array of strings, folder images
	[ 23,16 ],																													// 7  array of integers: width and height of folder images; 
	[ 0, 20, 40 ],																											// 8  array of integers, indentation for each level
	'',																																	// 9  string, background color for the tree
	'clsNode',																													// 10 string, default CSS class name for all nodes
	['clsNode','clsNode2'],																							// 11 array of strings, CSS class names for every level
	true,																															// 12 boolean, single branch mode flag
	[0,0],																															// 13 array of integers, item padding and spacing
	true,																																// 14 boolean, explorer-like mode flag
	
	[																																		// 15 array of strings, list of images for explorer-like mode
        ipath+"img/tree/plus.gif",
        ipath+"img/tree/minus.gif",
        ipath+"img/zero.gif",
        ipath+"img/tree/minus.gif",
        ipath+"img/tree/minus.gif",
        ipath+"img/tree/plus.gif",
        ipath+"img/plusbottom.gif",
        ipath+"img/zero.gif",
        ipath+"img/tree/dir.gif",
        ipath+"img/tree/dir.gif"
    ],
		
	[23, 16], 																													// 16 array of integer, width and height of images for explorer-like mode
	true, 																															// 17 boolean, state saving feature flag
	true,																																// 18 boolean, relative positioning flag
	[ 181, 180 ],																												// 19 array of integers, initial width and height of the tree in relative positioning mode
	true, 																															// 20 boolean, resizable background for relative positioning mode
	true,																																// 21 boolean, selected node highlighting mode flag
	[ "", "", "" ]																											// 22 array of strings, attributes for selected node: first element defines background color for unhighlighted nodes, second - same for selected node, and third element specifies CSS class for selected node
];