var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to find differences between two XML files. Before loading the files for comparison, the user first selects an option to load: all (entire files), tags only or data only. The results will be displayed in two panes and can be saved. There are two options for comparison method: Standard or MS Word method (Word must be installed for the latter). The standard method has two options: to display all lines with the differences highlighted or to only display lines with differences."; 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 = ''; } }