var fDesc=new Array();
fDesc[0] = "Access Professional Edition is access control scalable software for small to medium-sized enterprise.
Main features:
- Cardholder administration of up to 10,000 records in the database.
- Graphical location map with device control via both maps and a device tree.
- Alarm management with details via the alarm list and animated GIFs on interactive location maps.
- Video verification, video alarm verification, and video monitoring of live and recorded events.";
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 = '';
}
}