var fDesc=new Array(); fDesc[0] = "Visual Pascal is a small tool for Delphi and Pascal programmers. By several clicks you get a large amount of code in the Pascal programming language. Keyboard is needed for typing names only. The program window is separated into two parts. On the left you insert program constructions, on the right you get a ready to use code."; 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 = ''; } }