var fDesc=new Array(); fDesc[0] = "DataViewer is an object oriented toolkit for creating visualization applications. DataViewer has both standard and user definable OO data-structures, provides generic viewing facilities (rotation, zoom, etc. through either mouse, key-bindings or 6D controller), bitmap copy to file (PPM), VRML output, animation, stereo viewing. DataViewer is analogous to the widely distributed GeomView program, but the data structures and implementation are more oriented toward interactive high-performance computing."; 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 = ''; } }