var fDesc=new Array(); fDesc[0] = "Learning ReportBuilder is a complete learning system designed to teach end users how to build a range of reports. This system includes a 125-page PDF file, a stand-alone application complete with a database, and a help file. The PDF file is comprised of a series of tutorials that step end users through the process of building reports as simple as a table listing and as complex as crosstabs. The tutorials also introduce conceptual aspects of report building along the way.
The application is used in conjunction with the tutorials so that the learning experience is interactive. The end user just prints out the PDF file, runs the application, and learns ReportBuilder. The help file is accessible from the application, so all three tools work together to provide a seamless learning environment."; 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 = ''; } }