function doTree( code ){
//---------------------------------------	
	theForm = document.frmAll;
	theForm.tree.value = code;
	document.getElementById('d'+code).style.display='block';
	theForm.submit();
}

function doLng( code ){
//---------------------------------------	
	theForm = document.frmAll;
	theForm.lng.value = code;
	theForm.submit();
}

function doAct( code ){
//---------------------------------------	
	theForm = document.frmAll;
	theForm.action.value = code;
	theForm.submit();
}

function doJob( code ){
//---------------------------------------	
	theForm = document.frmAll;
	theForm.tree.value = 2;
	theForm.jobstation.value = code;
	theForm.submit();
}

function doDiv( code , shw ){
//---------------------------------------	
	if(shw == 0)
		document.getElementById('x'+ code).style.display='none';
	if(shw == 1)
		document.getElementById('x'+ code).style.display='block';
}

