var fDesc=new Array(); fDesc[0] = "This program lets you convert Portable Network Graphics files (PNG) to DirectDraw Surface files/textures (DDS). This converter has the ability to save alpha-transparency and mipmap levels while converting. Easy2Convert PNG to DDS supports conversion of only a single file at a time. Its built-in command-line support allows you to convert PNG to DDS using a batch file; this is useful in converting multiple files."; 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 = ''; } }