var fDesc=new Array(); fDesc[0] = "The GoVisual Diagram editor (GDE) provides powerful functionality for editing and automatic layout of diagrams. Diagrams are represented in form of graphs and cluster graphs. GDE contains all the layout styles available in the GoVisual libraries. he screenshot shows GDE's main window with several open document windows. The active document windows shows a cluster graph with several clusters highlighted by color. The cluster explorer at the right hand side displays the hierarchical nesting structure of clusters and nodes. It allows to move nodes and clusters within the cluster tree and thus provides an easy mean for managing the cluster structure of the graph."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }