var fDesc=new Array();
fDesc[0] = "SnapShotPro lets you take a screen shot and save it as a jpg, bmp, wmf, emf, ico or gif file. You can save the full screen, current window or select an area.
Main Features:
- Runs in the system tray or stays on top
- Opens existing graphics
- Hot Key for quick action
- Preview images before opening
- Print without opening
- Print preview
- Copy to clipboard
- Enlarge or reduce opened SnapShots
- Paste from clipboard
- Rotate 90 degrees
- Flip horizontal
- Flip Vertical
- Send saved SnapShot as an email attachment
- Associate loaded file with SnapShoPro
- Simple to use
- Free Upgrades
- Full install/uninstaller";
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 = '';
}
}