var fDesc=new Array();
fDesc[0] = "Match Calculator is a freeware for freelance translators and translation agencies. The program helps the users of CAT software to calculate the amount to be invoiced or quoted with multi-tier pricing structure for repetitions and fuzzy matches.
Note: Match Calculator does not count text in files.";
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 = '';
}
}