var fDesc=new Array();
fDesc[0] = "With Screenshot Genius you can:
1. Get snapshot of an active window.
2. Automatically save it to file and/or copy to clipboard.
3. Define naming rules for screenshot files with macro substitutions.
4. Save to a variety of formats, including BMP, JPEG, GIF and PNG.
5. Create thumbnails of screenshots with specified size in pixels or percent.
6. UNIQUE Add a portion of screen, surrounding an active window with specified width. Apply Effects to that area, including Blur, Darken, Pixelize and more. Allow active window to drop a shadow.
7. Add text images to your screenshots, customize font, color and text style.";
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 = '';
}
}