var fDesc=new Array();
fDesc[0] = "HTMLPrint is designed for printing HTML documents and image files, including files with the following file extensions: .HTM, .HTML, .PNG, .GIF, .BMP, .JPG, .JPEG, .WMF, and .EMF.
The program can print with its own embedded printing engine, or through Internet Explorer. It is fast and requires only a small amount of computer resources to run effectively.";
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 = '';
}
}