var fDesc=new Array(); fDesc[0] = "This project is designed for informatics developers who want to make theirs applications* better by adding on them a user help, a macro system and an application's functionalities access system. All of these technical points required important software modifications that depend on applications conception. The DynHelp system which is in the shape of a C/C and Basic compatible DLL, brings you a simple and quickly way to manage these functionalities. The calling of two DLL's exported procedures permits you to succeed in it (see the Adapt DynHelp system chapter)."; 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 = ''; } }