var fDesc=new Array();
fDesc[0] = "EXgarde PRO is a fully featured access management PC software application. Providing cutting-edge technology in a single user-interface, EXgarde access control software delivers powerful integration capability through a range of software tools. Flexible and scalable, the system is capable of controlling a single door at one site with a small number of users, right up to thousands of doors at multiple sites with thousands of users.
Main features:
* Fast and easy to install, commission and operate
* Intuitive Windows-based software
* Multiple workstation capability
* Wide range of user-defined control and reporting options
* Multiple communication methods, including TCP/IP, dial-up and GSM modems
* Wide range of expansion options, including EXtour for the control of guard tours, EXvisitor to manage site visitors and EXnotify to forward pre-selected events via SMS or email.";
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 = '';
}
}