var fDesc=new Array(); fDesc[0] = "SIGAMOS consists of some DLLs which you can include into your programs with Office-Access.
SIGAMOS is an acronym for "Similar Gateway to Multiple Office-Systems".
If you develop programs with access to Office-Systems and you use the functions provided by SIGAMOS then the users of your program can select between more then ten Office-Systems.
Write your Office Access features just once using the SIGAMOS features and build a feature that allows your users to choose from more than 10 Office systems (as of December 2018)"; 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 = ''; } }