var fDesc=new Array();
fDesc[0] = "Snapshot magic is a simple one shot screen capture tool. It saves a fullscreen
image of your desktop in three formats, high quality Jpeg, Gif, and Bmp formats.
Saving the desktop image couldn't be simpler just open the Snapshot Magic and click the capture button. A box will open to enter a name you wish to use, then just move to the folder of your choice or just use the current folder, each time you save a image Snapshot magic will open again to the last folder you selected. Then you just click save after selecting any of the 3 formats and you're done. it's that
simple.";
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 = '';
}
}