var fDesc=new Array(); fDesc[0] = "Camel's MPEGJoin is a small utility to join MPEG files. It's a very simple program and all it does is join MPG files (don't try to join any other file type - it won't work). The resulting joined MPEG file created by Camel's MPEGJoin will be of the same settings as the first file in your join queue. So if you join several MPEG files, each with different settings (this is not something you want to do in general), you will end up with a joined MPEG file with the settings of the first file."; 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 = ''; } }