var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to join two HTML tables together. To protect your original files, the results of the join will be saved as a new HTML file. There is a feature in the software to join tables by appending in the up and down direction. There is also a feature to join the two tables side by side using a common column of data as the link between the two. If the data in the common columns match, the rows will sync so that they can be read fully from left to right. For those familiar with SQL, this kind of side by side join is similar to the OUTER JOIN. By instantly joining your HTML tables in batch, this software will save you hours of time that you may have to spend copying and pasting."; 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 = ''; } }