var fDesc=new Array();
fDesc[0] = "TransHunter hunts different translations from English to Greek or vice versa. The program interface contains 2 fields so you can type the word you need translated in one and in the other the result will appear translated. All is done with a few clicks.
Features:
-Hunt translatation from English to Greek or vise versa.
-TransHunter help you hunting different translations from Internet.
-TransHunter help you better understand what you want to translate.
-You can also 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 = '';
}
}