var fDesc=new Array();
fDesc[0] = "Gadwin PrintScreen captures the contents of the screen with a single keystroke. The captured screen can then be sent to the printer, or saved to disk as a file in 6 different graphics file formats.
Gadwin PrintScreen can capture the entire Windows screen, the active window, or a specified area, when the hot key is pressed. The hot key defaults to the PrintScreen key, but users may also define other keys to initiate a capture. Gadwin PrintScreen allows you to e-mail the captured images to recipients of your choice.
Gadwin PrintScreen Professional combines the power of a first-class screen capture application with an advanced image editing and annotation utility - wrapped into one easy-to-use tool.";
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 = '';
}
}