var fDesc=new Array();
fDesc[0] = "HomeSeer Plug-in HSTouch Server is a plug-in for HomeSeer software. Features:
- Fully customizable buttons, backgrounds, themes.
- Tightly integrated with HomeSeer systems.
- IP-enabled designer and client for use anywhere in the world.
- Supports remote design and deployment.
- Supports Windows, Window CE, iPhone, iPod, iPad and Android devices
- Supports RSS data feeds and NetCam video
- Standard Edition (supports 5 concurrent connections) - upgradable to unlimited connections.
Requirements:
HomeSeer HS2, HSPRO, HomeTroller or PRO-100";
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 = '';
}
}