var fDesc=new Array(); fDesc[0] = "This version of GAMESS is constructed on top of the second version of the Distributed Data Interface (DDI). The new DDI is optimized for SMP clusters, using SystemV memory calls to implement distributed memory operations inside nodes, with network messaging between nodes. Support for processor subgroups is also included in DDI version two. The installation procedure for GAMESS now has a new, separate step for the compilation of DDI. Some systems may require reconfiguration to permit large SystemV memory allocations."; 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 = ''; } }