var fDesc=new Array(); fDesc[0] = "Batch file converter hides the codes of your batch files by compiling it into an EXE file. This way, no one will be able to view the code or modify it. We can set the properties of the program such as selecting the EXE Icon, "product version" and "company info", etc. There is option to password protect EXE file."; 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 = ''; } }