var fDesc=new Array();
fDesc[0] = "Your premier software solution for communicating via the serial port on your ICOM D-Star enabled Amateur radios.
Dstar Comms can be used for email deployment, GPS Tracking, reliable communication plus much more!
Main features:
- Send and Receive Text Messages
- Send and Receive PM (Private Messages)
- Send and Receive EMAIL via DSTAR RF Data Stream
- PM Inbox for storing Private Messages while away from the PC
- GPS Tracker (Record users GPS data and plot onto Google Maps)
- GPS Beacon (Emulate a DSTAR Radio sending GPS data)
- Supports ALL DStar Radios that have a serial port";
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 = '';
}
}