var fDesc=new Array(); fDesc[0] = "Skype Translation Utility is a small program that translates text sent and received in a Skype Chat. It detects your language and the language of the person on the other side of the conversation, and translates messages between the two.
To the other person, you appear to be talking in their language. On your end, a small box displays their messages translated into your language.
There's only two buttons in the entire program. The left button turns translation on and off for the chat you're in, and the right button turns translation on and off for all chats."; 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 = ''; } }