var fDesc=new Array();
fDesc[0] = "UltraSMS is a easy to use software for sending sms from your computer. All you have to do is add the details of the person(name,country,phone number) and you are ready to send him a sms.
The UltraSMS software can send multiple and deferred flash SMS.
It can send single SMS or entire contact lists with one click.";
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 = '';
}
}