var fDesc=new Array(); fDesc[0] = "Data Log Viewer is a utility for viewing datalogs downloaded from ECU Manager. The program provides quick access to logged data through the data navigation tree, along with multiple tabded pages for simple data viewing. You can view data in a range of different styles and combinations, save project settings, such as display pages, filters, math channels and trace notes, compare three data streams within a graph, and more."; 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 = ''; } }