var fDesc=new Array();
fDesc[0] = "The PlaceAccess® Home Control System supports Z-Wave appliances and uses the Aeon Labs Z-Wave USB stick as the Master Control transmitter and receiver unit.
PlaceAccess® is the logic4me Home Control System that:
- combines comfort, alarm, and energy saving features for your home in a single solution
- makes general access to your home very easy without the need for monthly subscription payments
- makes installation, maintenance and portability as easy as the use of USB-modems
- makes your smartphone the primary device to access, monitor, and control your home from anywhere anytime.";
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 = '';
}
}