var fDesc=new Array(); fDesc[0] = "HTML Compress compresses HTML by removing unnecessary white space characters such as carriage returns, line feeds, spaces and tabs - in effect it is a lossy compression. It also has the capability to remove certain HTML tags. JavaScript, CSS and VBScript can also be subjected to similar compression using this program. Because of the extensible nature of HTML Compress, it can be configured to allow it to compress other SGML based formats too - basically anything using angled brackets to define "tags". Compression of HTML allows it to download faster, display faster ( the parser does not have as much junk to deal with), take less space on web servers and end users system, decrease loads on a server."; 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 = ''; } }