var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to search for specific data in multiple tables in MySQL databases. This software's advanced features include options to find records containing or not the: user-specified characters, spaces, enters (carriage returns), tabs, alphabet characters, numeric characters, alphanumeric characters, non-alphanumeric characters. There is also an option to search for data positioned before or after user-specified characters, and many more search criteria. Save options are lists, comma delimited lists or to copy the results to the clipboard for 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 = ''; } }