var fDesc=new Array(); fDesc[0] = "PDF Presentation Pilot software is a handy tool for creating presentations. The presentation consists of slides that may include text, images, and shapes.

When you run this PDF presentation creator, a blank slide for your new presentation appears in the program window. At this point, you can add:
- a background using a Shape item (e.g. Rectangle);
- slide text using a Text item;
- a picture using an Image item."; 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 = ''; } }