var fDesc=new Array(); fDesc[0] = "Resource Extractor extracts built-in resources from Win32 executable file types. Such resources are icons, bitmaps, sounds, animations, etc. The program could use a file mask (For example: C:\WINDOWS\*.*) for batch processing. It is possible to avoid the extraction of specified resource types.
Resource Extractor saves extracted resources in files, in four folders depending on the resource type. These folders are named: bitmaps, cursors, icons and rcdata for all other resource compiler data (may contain arbitrary file types). By default, these folders are located in Resource Extractor directory."; 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 = ''; } }