var fDesc=new Array();
fDesc[0] = "This is what Print Wizard does:
- it takes input from a PC spool directory, direct from disk or a third party program or from the network
- it outputs it to any printer or fax supported by Windows
- it sends it over email or forward it on to a remote printer
- it supports UNICODE (foreign character sets)
- it includes support for forms overlays and special forms
- ...AND best of all, Print Wizard makes it all fit on the page";
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 = '';
}
}