var fDesc=new Array(); fDesc[0] = "Bat-to-Exe converts your batch files into standalone Windows executables (.EXE files). The resulting EXE-files are compressed and encoded, making it hard to reverse-engineer your batch file.
On the Windows operating system, batch files are text files that contain a series of commands that should be executed by the operating system interpreter. The commands could be any kind of directives supported by the operating system's "command line" and/or names of other executable files or batch files. Since batch files are text-based, they can be easily reverse engineered."; 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 = ''; } }