var expandCloseIcon = new Image(); expandCloseIcon.src = "../public/images/treeview/expander_close.gif"; var expandOpenIcon = new Image(); expandOpenIcon.src = "../public/images/treeview/expander_open.gif"; function createListMenu(id, list, opened) { // first node document.write(""); } else { document.write(" src=\"../public/images/treeview/expander_close.gif\""); document.write(" title=\"Open " + id + " List\" />"); } document.write("" + id + "
"); // list document.write("
"); for (i=0; i"); document.write("\"\""); document.write("" + values[0] + "
"); } document.write("
"); } function openList(id) { var theDiv = document.getElementById("div" + id); var theJoin = document.getElementById("join" + id); if (theDiv.style.display == 'none') { theJoin.src = expandOpenIcon.src; theJoin.title = 'Close ' + id + ' List'; theDiv.style.display = ''; } else { theJoin.src = expandCloseIcon.src; theJoin.title = 'Open ' + id + ' List'; theDiv.style.display = 'none'; } }