var fDesc=new Array();
fDesc[0] = "Teroid Data Grid View Print Control provides much-needed printing, page setup and print preview functionality for the DataGridView, which replaces the DataGrid in .NET 2.0.
This control is very simple to use: just set its DataGridView property and call the PageSetup, PrintPreview and Print methods in the appropriate menu or button click event handlers.
All column types can be printed: text, combo box, check box, image, link or button, and fully formattable page numbers, header and footer text can also be printed if required.";
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 = '';
}
}