var fDesc=new Array();
fDesc[0] = "ViewPro allows you to integrate print preview and report generator into your .NET and VB6 projects as well as others. You can use ViewPro to build graphics and text-based reports or technical drawings, display the results in a scrolling and zooming viewer on your form and then print it. Also, you can use the program to create sophisticated run-time reports or technical drawings that are difficult or impossible to achieve with a static report writer. ViewPro lets you place tables, graphs, pictures and drawings onto text report pages, which can be imported or exported as windows metafiles.";
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 = '';
}
}