var fDesc=new Array();
fDesc[0] = "Welcome to Google Talk, a downloadable chat application by Google. Check out what Google Talk can do:
Text chat
Instant messages: share quick thoughts in real time
Status updates: see if friends are around and what they are up to
File transfer: instantly send and receive files, pictures, and more
Voice chat
Free long distance: make PC-to-PC calls to people anywhere in the world
Audio conferencing: talk to multiple people at once
Gmail integration: chat with your friends on Gmail";
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 = '';
}
}