var fDesc=new Array();
fDesc[0] = "HouseLinc gives you the power to setup, automate and manage your entire INSTEON network, create scenes and timed events for your INSTEON-compatible or X10-compatible lights and appliances all from an easy-to-use PC interface.
Main features:
- Setup and manage your whole house INSTEON network
- Create powerful scenes to create just the right ambiance at the touch of a button
- Create timer events based on time of day, sunrise or sunset";
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 = '';
}
}