var fDesc=new Array(); fDesc[0] = "GrfBuilder is a tool for managing GRF files (read/write/edit/preview/etc). It uses libgrf to read and write GRF files. The program runs on Windows and Linux. GrfBuilder introduces a new way of repacking a GRF file, just by moving files inside the GRF. No need for more disk space. This result in much faster repack, and ability to cancel repack at any moment. You can choose from the Options menu if you want an ANSI or an Unicode extraction. When importing files, the method is automatically detected. You can even have both unicode and ANSI files inside your data folder, the autodetection will do its work."; 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 = ''; } }