var fDesc=new Array();
fDesc[0] = "SafAlert™ Notifier is an automated email or SMS-MMS alert notification system triggered by any programmable single, or 2-tone signal, such as fire or EMS dispatch.
Main Features:
- Unattended operation.
- Mobile phone as voice pager.
- Receive audio or text messages (MMS) on mobile phone or PC.
- Correctly handles "stacked pages" when two or more stations are dispatched for the same call, and delivers alerts to the appropriate personnel.
- Supports multiple stations when dispatched on a common frequency.
- Instant replay of last dispatch.
- Keeps a log of all alerts with recorded audio.";
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 = '';
}
}