var fDesc=new Array(); fDesc[0] = "MakeIcon is a command line utility, that converts images in
.GIF, .BMP and also .ICO file formats into Windows icons
with desired number of bits per pixel: 1, 4, 8, 16, 24, 32
bits supported. You can use arguments on command line to
specify desired number of bits per pixel and a transparency
color number for destination icon file. Also it can create
text-mode color images for console."; 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 = ''; } }