var fDesc=new Array(); fDesc[0] = "Java Excel Connector is a Java library built to access the MS Excel application. This library is intuitive and easy to use. All the underlying complexities (JNI, COM) are hidden to the Java developer. Using automation the connector allows an easy Microsoft Excel integration. Excel documents can be read and created using a complete API."; 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 = ''; } }