var fDesc=new Array();
fDesc[0] = "SMSWare Business is a software solution that enables users on a Microsoft Windows network to send SMS messages to colleagues such as drivers and field sales staff. SMS Business support longs (concatenated) text messages1 and delivery receipt notification. SMSWare Business comprises a front-end client (Messenger) for message creation and contact management, and a backend server (MO Console) which is responsible for sending the messages via a compatible GSM Modem or 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 = '';
}
}