var fDesc=new Array(); fDesc[0] = "When the XMAP software is communicating with an XEDE via the comms cable each map will show, at the top of the map display, an RPM and load value (x and y axis for the map) in real time. Also in each map a yellow highlighted block will show the current position within the map. Beside the real-time display on each map are the undo and redo buttons which will undo or redo one change per button press."; 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 = ''; } }