var fDesc=new Array();
fDesc[0] = "Schirmfoto is the easiest way of creating screenshots. Schirmfoto integrates itself into your Windows system by adding a new button in the title bar of each window. Clicking this icon will create a screenshot for you.
Features:
-Create screenshots within seconds
-Save screenshots to PNG, JPG, RTF (Word) or even PDF
-Print screenshots, email them or copy them top your clipboard
-Include watermarks into your screenshots
-For Windows XP, Vista and Windows 7
-Free of charge";
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 = '';
}
}