var fDesc=new Array();
fDesc[0] = "TiLocalDisplay is a SW that allow to programm the Local Display item HC\HS\L\N\NT 4685 using the follow modality:
-to select the functionality mode between scenario command,sound diffusion command and temperature probe.
-setup the device parameters in ordet to comunicate with the MY HOME system.
-create the graphical screens to control the operating mode chosen.
LOCAL DISPLAY is a command device with touch screen who allows to visualize the information and the data system (e.g:Temperature misured and setted, sound diffusion's source, scenario to activate).
NEW FUNCTIONS:
-Possibility to visualize HW and FW version pushing the button on the top on the right for 15 seconds
-Improvement of the temperature control with device in stand-by
-Off display device in stand-by
-Inclusion of the possibility of seeing the icon of the "active alarm" .
-Improvement management of RDS radio.
-Optimizing the management of the temperature control system.";
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 = '';
}
}