//************************************************************************/
// Web Application Maker Library
//
// Copyright (c) Declarativa 2000-2002. All Rights Reserved.
// See http://www.declarativa.com/wam for licensing terms.
//************************************************************************/

function expandWAMTreeNode(node){
	with (window.document.__frmWAMTree){
		wtexpand.value = node;
		submit();
	}
}

function collapseWAMTreeNode(node){
	with (window.document.__frmWAMTree){
		wtcollapse.value = node;
		submit();
	}
}

function selectWAMTreeNode(val){
	window.document.__frmWAMTree.wtselected.value = val;
}

function openDetailListWAMTree(strURL){
	currentMenu.hideSelf(true);
	strURL += window.document.__frmWAMTree.wtselected.value;
	return window.openChild(strURL, WinFeatures(0, 0, 'no', 'no', 'no', 'yes', 'no', 'yes', 'yes'));
}

function refreshTree(){
	window.document.__frmWAMTree.submit();
}
