var fDesc=new Array();
fDesc[0] = "Icon Scanner is utility for searching, extracting, creating and converting icons.
Icon Scanner can
- extract all types of icons and bitmaps within nearly any file type (EXE, DLL, OCX and other PE-executable, icon libraries and image files)
- create multiformat icons from image files
- export icons to the following files formats: GIF, BMP, JPG and PNG
- easily create and convert multiply icons
- supports Windows XP";
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 = '';
}
}