var fDesc=new Array(); fDesc[0] = "A Geographical Simulation and Optimization System (GeoSOS) is a computer-based system capable of simulating, predicting, optimizing, and displaying geographical patterns and processes. GeoSOS has been developed by Prof. Xia Li and his team at Sun Yat-sen University. GeoSOS is designed in an Object-Oriented Programming (OOP) paradigm. This system is implemented by using the Microsoft .NET Framework version 2.0 and C#."; 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 = ''; } }