var fDesc=new Array();
fDesc[0] = "Most of display needs a computer handling.
Led Display is easy to use, functional and manufactured so as it satisfy as much as possible more needs.
Main Features :
- Several information type such as : text, clock, date, temperature
- Tools such as : simulator, priority line, lottery, video converter and much more
- Options which provides settings of lighting : auto with Photo Sensor, Timing Light, standard level lighting";
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 = '';
}
}