var fDesc=new Array(); fDesc[0] = "The DaVinci Editor is an application developed by the Command Systems Pty. Ltd. for the Commbox DAVINCI products. The DaVinci Editor can help the user create his own DAVINCI touch screen platforms interface. When the program starts you can choose between the DaVinci 15inch and a 10 inch touch panel. Using the program interface you can create text boxes, buttons, sliders, radio buttons, each assign with various actions."; 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 = ''; } }