var fDesc=new Array(); fDesc[0] = "LRXSWP01 is the specific configuration software for the programmable text monitor LRXP01. The basic element of a project is the screen. All the screens for one certain project are saved in a single project file. Every screen is made to
execute some certain functions. By arranging the screens, the user can jump from one screen to another. The application project file is composed
of all the screens. The user can put some elements, such as characters (English), LEDs, switches, data inputting boxes and jump keys on every screen."; 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 = ''; } }