var fDesc=new Array(); fDesc[0] = "Count Anything is a free word-count utility for Windows. Word/character counts are an essential part of the work of translators, writers, and others who need to bill based word count. There are several word-count utilities around, some of them free, but I wrote this one because the other tools didn't count Asian characters and/or didn't support some MS Office formats."; 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 = ''; } }