var fDesc=new Array();
fDesc[0] = "BeCyIconGrabber alows you to view icons and cursors of any sizes that are contained in ICL, OCX, CPL, EXE, DLL, SRC, ICO and CUR files. Besides searching on one's own, the application can scan the system for files which contain icons/cursors. Given a root directory the application scans this directory for symbols. Optionally, all sub directories can be scanned, too.";
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 = '';
}
}