var fDesc=new Array();
fDesc[0] = "myHomeControl® is an extension to the EnOcean radio bus system and all the different hardware devices. It is a PC-Program runing under Windows.
myHomeControl® reacts to the environment and to different living situations. Therefore it is able to:
-Save Energy
-Improve the Security
-Enhance the comfort
myHomeControl® enables you to define functions as you wish and to visualize and control them using a touchscreen. -t.
myHomeControl® is easy to be operated and configured.";
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 = '';
}
}