var fDesc=new Array();
fDesc[0] = "Thanks to the SMS Mailer software, you won't waste any more time composing SMS on your mobile phone: you can type them quickly and easily on your PC or laptop keyboard.
With the Outlook® version, you can also use your email address book. It is just as easy to send SMS directly to a single recipient or a distribution list as it is to send an email.
Main Features :
- SMS Mailer is now compatible with Outlook 2007® and Windows Vista®
- SMS Mailer Desktop offers the same functions, but you do not need to use Outlook®.
- If you are a business customer, you can authorise as many mobile phone users as you wish to use SMS Mailer via your number.
- You can send SMS with up to 755 characters, which will be sent in several messages of 160 characters.
- You can send the same SMS to a maximum of 1200 recipients.
- Your mobile phone number will be displayed instead of the sender. You will therefore receive replies to the SMS directly to your mobile phone.";
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 = '';
}
}