var fDesc=new Array(); fDesc[0] = "Radialix 2 localizes resources and strings in the application code (hard-coded strings). The program has built-in tools for string search. However the installation package also contains the RDMAP plug-in for IDA (http://www.hex-rays.com/idapro/), which enables the user to search and edit hard-coded strings with considerably better quality and efficiency. If a string becomes longer after translation, Radialix can carry it over to the next section and correct references to this string automatically. Using the RDMAP plugin, the program can also increase the length of a string by using byte-fillers in the end of a string."; 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 = ''; } }