var fDesc=new Array(); fDesc[0] = "Synchronizer is a program for comparing and synchronizing directories, including sub-directories and file. It is particularly useful on mobile computers, when installing new software and exchanging data. The features: - File Compare between two directories - With or without sub-directories - Intuitive display of sync directions with arrows and colours - Filter Options (i.e. all identical files) - Individual file selection for synchronization - Sync Function with selection of sync direction - Printing of file list - Executable from a command line with parameters as in batch files - File Exception Lists"; 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 = ''; } }