var fDesc=new Array();
fDesc[0] = "HAPCAN Visualizer is the Windows based software which displays status of devices in the HAPCAN system. It also enables device control.
Features:
-Function RGB(x,y) displays RGB Controller window which allows to choose colour. It is possible to control 3 LED Controllers at the same time when calling function RGB(x1,y1);RGB(x2,y2);RGB(x3,y3). Numbers in brackets are modules' identifiers.
-object PAGE
-50 pages to be used.
-switching between pages is made with PAGE() function that can be run from object ICON, TEXT, GAUGE.
-it is possible to change background picture and colour on each page.
-object GAUGE
-100 objects to be used.
-properties can be changed; colour, size and others.";
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 = '';
}
}