var fDesc=new Array();
fDesc[0] = "This version of TransHunter hunt different translations from English to French or vise versa.
You can also import your text files/documents and translate them by case, into English or French. Also, if you have to translate text from Internet, you will import it into TransHunter and in just a few seconds you will have the translation done. TransHunter offers 3 different versions of translation. You can choose the best translation from results.";
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 = '';
}
}