var fDesc=new Array();
fDesc[0] = "The SCML MSflexGrid Printer is an ActiveX DLL that allows Visual Basic programmers to print and preview MSflexGrid controls on ink-jet and laser printers. It has been made with VB6 (sp3).
The SCML MSflexGrid Printer has the following features:·
- Easily print and preview the content of MSflexGrid controls in report mode.
- You can choose from many layout options for the print output.
- Print only selected pages.";
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 = '';
}
}