var fDesc=new Array(); fDesc[0] = "CWPlus is the auxiliary integrated tool for Clarion for Windows IDE and allows to simplify manual coding essentially. CWPlus realizes analogues of the most important elements of Microsoft IntelliSense technology as applied to Clarion, such as:
-the pop-up help about the identifier;
-the help about the prototype of edited procedure;
-the actual list of identifiers with an opportunity at any moment to choose the necessary identifier and to insert it into the text."; 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 = ''; } }