var fDesc=new Array();
fDesc[0] = "- operation in Windows 98/ME/2000/XP environment
- visualization of protected facility status on computer monitor
- on-line information on emergency situations
- real-time event reading
- system control from virtual keypad on computer screen
- user creating and editing
- communication with the control panel
- RS-232 port in keypad
- LAN/WAN network (TCP/IP communication) by means of hardware or software server
- telephone line - analog, ISDN or GSM modem";
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 = '';
}
}