Hakan ERDOGAN - 2007-03-04

Logged In: YES
user_id=1467482
Originator: NO

Hi, in the showNode function just set the state attribute to "open".
here is the code snippet:

function showNode(treeNode,lastNode) {
linestring = treeNode.getLineString();
var state = getState(treeNode.getID());

// Hakan add-on
if(showAllNodesOnStartup) {
state = 'open';
}
// end of Hakan add-on

var str;
....