var fDesc=new Array(); fDesc[0] = "CG-350 is used to create and display title pages. The program is divided into two
sections. These are Page Creation and Page Display. Page creation is done with the Title Composer. The CG-350 program allows you to create a list of pages and then display those pages either automatically or under manual control. Under manual control each page that you have created can be displayed with its assigned page transition. Each page is displayed when you want it, for as long as you want it. The pages are previewed so there is no question as to which page will be displayed next. The pages are displayed when you press the appropriate button/key."; 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 = ''; } }