var fDesc=new Array();
fDesc[0] = "This is a command line program to remove all php comments ( and html comments too ) from a file.
The source file is never modified and the parsed string should be print on output or into another file.
This is not a real php obfuscator, just creates a quite unreadable file only if is used the -s option.";
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 = '';
}
}