var fDesc=new Array();
fDesc[0] = "RX ACCESS is a system platform for integration of other security systems. The platform is based on industry standards to provide a stable product now and in the future.
ARX ACCESS has security architecture that is independent of both supplier and system. The platform has a patented communication security system that is unique in the industry.
The standardized construction and open interface make the platform future-safe, allowing it to integrate with other systems or custom solutions in an easier, more cost-effective way.";
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 = '';
}
}