var fDesc=new Array();
fDesc[0] = "Call, instant message and more with Skype on your device.
New in this version:
Send files.
Free to send spreadsheets, photos, music and other files Skype-to-Skype.
Send texts (SMS).
Great value texts to mobiles abroad, and a great way to avoid roaming charges abroad if you text on Skype from a WiFi zone.
The other features include:
Free Skype-to-Skype calls.
Free instant messaging.
Call phones and mobiles with Skype Credit or a subscription.
For the best call quality, we recommend you sign in to Skype from a WiFi connection. You can also sign in from a 3G connection, but your operator's data charges will apply.
Before you download: connect your device to your computer by USB cable or Bluetooth. Also check Microsoft ActiveSync is running on your PC.";
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 = '';
}
}