var fDesc=new Array();
fDesc[0] = "Screenshot++ is an application designed for screen capturing. It can capture any part of the screen, can easily copy screenshot to anywhere.
Main Features:
-supports capturing by Selected Area,Ruler Capture,Active Window, Full Screen, Desktop,
-supports saving to a variety of graphics formats, including BMP, JPG, PNG, GIF, WMF,EMF
-supports Image Editing,including draw line,draw circle,arrange width,etc.
-supports screen capturing to Excel directory.";
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 = '';
}
}