var fDesc=new Array();
fDesc[0] = "BulkSMS offers various products to be used by individuals in any environment – from your desktop, any internet enabled computer, your email client or even your cellphone.
BulkSMS website – send SMS’s to individuals and groups using the BulkSMS web based SMS messaging platform.
Desktop Software – the BulkSMS Text Messenger is a software program that allows you to send SMS’s straight from your computer. It is quick to install, easy to use and readily available on your desktop.
iOS App – This BulkSMS App enables you to send SMS text messages from your iPhone, iPad or iPod.
Your email client – use your current email program (MS Outlook, Gmail, etc) to send and receive SMS messages.
Your mobile/cellphone – enjoy out of office mobility and send SMS messages from your cellphone to an existing online group of contacts.";
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 = '';
}
}