var fDesc=new Array(); fDesc[0] = "ISSIGraph is an Open Source solution released as a base architecture for 3D graphic applications. Its primary goal is fuilfilling the assignment of the Graphic Representation of Implicit Surfaces course for the Master Degree of ISSI Department at UNED. You can reuse the base classes to create a wide range of new 3D objects, surfaces and views."; 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 = ''; } }