var fDesc=new Array();
fDesc[0] = "is a handy utility to extract icons from EXE, DLL, Icon Libraries, and other executable files that contain icon resources.
The extracted icons can be saved in ICON/BMP/GIF/JPEG formats, and can also be saved in Icon Libraries (collections of icons).
Key Features:
1. Support true color icons
2. Support multi-resolution icons
3. Save icons in ICON/BMP/GIF/JPEG formats
4. Create Icon Libraries (*.ICL)
5. Save icons into icon libraries
6. Windows Drag'n'Drop support
7. Explorer context menu integration";
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 = '';
}
}