var fDesc=new Array(); fDesc[0] = "Create PDF documents from Delphi Example.Learn how to create fully customized PDF documents from Delphi. Formatting, text, graphics in PDF documents, all that just by using Delphi. No third party components, pure Delphi. Full source code will teach you on how to start making your own PDF documents directly from Delphi."; 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 = ''; } }