var fDesc=new Array(); fDesc[0] = "SDLXLIFF Compare is a compact and fast tool used for comparing SDL XLIFF files and display the comparison results in an XML/HTML report. The comparison report is formatted in a way that simplifies the understanding of what changes were made from one version of the file to the other, whether it is textual content or segment status modifications. This tool can be especially useful for the management of a project, to understand the amount and what type of changes were made during a translation and/or revision phase. It uses the SDL Studio API to iterate through and recover all segment pairs from the SDL XLIFF files."; 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 = ''; } }