// Tree format definition
var TREE_FORMAT1 = [
	//  0. left position
	623,
	//  1. top position
	145,
	//  2. show buttons ("+" and "-" images)
	false,
	//  3. button images: collapsed state, expanded state, blank image
	["images/collapsed_button.gif", "images/expanded_button.gif", "images/blank.gif"],
	//  4. size of buttons: width, height, indent amount for childless nodes
	[16, 16, 16],
	//  5. show icons ("folder" and "document")
	false,
	//  6. icon images: closed folder, opened folder, document
	["tri.png", "tridown.png", "sqw.png"],
	//  7. size of icons: width, height
	[12,12],
	//  8. indent amount for each level of the tree
	[0, 3, 32, 48, 64, 80, 96, 112, 128],
	//  9. background color for the tree
	"",
	// 10. default CSS class for nodes
	"small",
	// 11. individual CSS classes for levels of the tree
	["smallB","small"],
	// 12. "single branch" mode
	true,
	// 13. padding and spacing values for all nodes
	[1, 1]
];

var TREE_FORMAT2 = [
	//  0. left position
	623,
	//  1. top position
	530,
	//  2. show buttons ("+" and "-" images)
	false,
	//  3. button images: collapsed state, expanded state, blank image
	["images/collapsed_button.gif", "images/expanded_button.gif", "images/blank.gif"],
	//  4. size of buttons: width, height, indent amount for childless nodes
	[16, 16, 16],
	//  5. show icons ("folder" and "document")
	false,
	//  6. icon images: closed folder, opened folder, document
	["tri.png", "tridown.png", "sqw.png"],
	//  7. size of icons: width, height
	[12,12],
	//  8. indent amount for each level of the tree
	[0, 3, 32, 48, 64, 80, 96, 112, 128],
	//  9. background color for the tree
	"",
	// 10. default CSS class for nodes
	"small",
	// 11. individual CSS classes for levels of the tree
	["medium","small"],
	// 12. "single branch" mode
	true,
	// 13. padding and spacing values for all nodes
	[1, 1]
];
