var fDesc=new Array();
fDesc[0] = "MWSnap is a small yet powerful Windows program for snapping (capturing) images from selected parts of the screen.
Current version is capable of capturing the whole desktop, a highlighted window, an active menu, a control, or a fixed or free rectangular part of the screen. MWSnap handles 5 most popular graphics formats and contains several graphical tools: a zoom, a ruler, a color picker and a window spy. It can be also used as a fast picture viewer or converter.
MWSnap does not require installation and does not need any special dlls, drivers or system files which can mess up your system.";
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 = '';
}
}