var fDesc=new Array();
fDesc[0] = "ComTekk DispatchSMS provides a convenient, intuitive system for dispatch of email and text (SMS) messages, utilizing an email or SMTP account. The software may be used as a stand-alone method of dispatch or as a supplement to existing radio dispatch systems. Message recipients may be chosen individually or by group buttons. Locations or street addresses can be automatically included as a clickable link to several different free map providers, enabling recipient to get directions on mobile device without requesting from sender.
Main Features:
- No carrier charges to send SMS
- Up to 500 users
- No cell phone needed
- FAST and easy to use
- Addresses & locations converted to map link
- Text an entire group with one click
- No recorring license fees";
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 = '';
}
}