var fDesc=new Array();
fDesc[0] = "Captus is an elegant and handy screen capturing software with quick and easy post-processing of captured images. Customizeable capturing parameters and post-processing settings give user the ability to create clear comprehensive screen captures for presentations or other purposes.
Captus consists of two independent applications - Capturer and Editor. Post-processing Effects are applied to the image after capture is done.";
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 = '';
}
}