var fDesc=new Array(); fDesc[0] = "Openoffice.org is a freeware office suite that contains all the functions available in MS office and much more. The latest version is 2.4. The Software Development Kit is similar to that of Microsoft visual studio. It can be easily downloaded from the official websites and from many others. It functions well not only in linux platform but also in Windows. Open Office Software Development Kit is an add-on for OpenOffice suite. It provides the necessary tools and documentation for programming the OpenOffice.org APIs and creating own extensions (UNO components) for OpenOffice.org. An important part of the SDK is the 900-page Developer's Guide. It provides a detailed description of the OpenOffice.org API concepts, the OpenOffice.org UNO model and how to use the API in different application areas. At the end of each chapter, you will find at least one example that shows you how to use a specific API. Those who are new to OpenOffice.org development will also find the OpenOffice.org developer page useful, with all the descriptions of different aspects and tasks stored there."; 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 = ''; } }