var fDesc=new Array(); fDesc[0] = "Absolute HTML compressor is a tool which compresses HTML files by removing unnecessary tags. It optimizes the files by reducing its size so now it’s easy to upload files and open them quickly. It doesn’t change the display of the file in the browser so it can be very useful for web programmers. It doesn’t corrupt the script and removes only unnecessary things.
It has an option dialog which gives many ways to optimize HTML files. A simple interface makes it easy to operate. With the option dialog the user can set which unnecessary things he/she wants to remove from HTML files and what he/she wants to keep. It merges lines automatically and also removes unnecessary white space characters. It replaces some large tags with short ones to reduce the file size. HTML files contain many comments which are not useful for displaying files on browser, these comments also can be removed from the HTML file. It creates a backup of each file before compressing so a user can undo changes done in a file and restore the previous one. A folder can be set as an input to this tool and it detects all the HTML files in the folder and its subfolder and compresses it."; 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 = ''; } }