var fDesc=new Array();
fDesc[0] = "goTranslateIt translates text using Google Translate and Bing APIs.
Developed in Visual Studio .NET 2010 Express Edition.
For switching between languages use button <=>
Every word you translate can be spoken simply clicking on button Speak.It uses Microsoft .NET Speech Synthesis.
With right click you can do Undo,Redo and Paste.";
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 = '';
}
}