lastExpanded = 0;
lastExpandedRoot = 0;
		
function toggleBlind(toggledID,isRoot,thisRoot){
		
	if(isRoot && toggledID != lastExpanded){
		/*since one isn't open by default...*/
		try{
			Effect.BlindUp('pageChildren' + lastExpanded);
		}
		catch(e){
		}
	}			
	
	/*if they open a new root, close current root and all of its children*/
	if(isRoot && lastExpandedRoot != toggledID){
		try{
			Effect.BlindUp('pageChildren' + lastExpandedRoot);
		}
		catch(e){
		}
		
		/*need javascript to close all the children too*/
	}
	
	Effect.BlindDown('pageChildren' + toggledID);
	
	if(isRoot){
		lastExpandedRoot = toggledID;
	}
	
	lastExpanded = toggledID;

}// JavaScript Document