var fDesc=new Array(); fDesc[0] = "TexTally is a line count software application designed to assist typists to count the number of words, lines or characters in any document.
If required TexTally can also be used to calculate a dollar amount based on a formula that you enter for billing purposes. This data can also be exported to a CSV file including the date, the job title, the total charge cost, number of characters, number of words and number of lines into a CSV file for billing using your accounts software or, for example, Microsoft Excel."; 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 = ''; } }