var fDesc=new Array(); fDesc[0] = "The reCsvEditor is a cross platform editor for Csv Files. It supports a wide variety of Field delimiters, very large files and Unicode Files. Files are displayed in a table format: upports just about any character being used as a field separators - Tabs, comma's, colons, semi colons, hex chars (i.e. x'00', x'FA') etc. Columns can be added, moved and copied. Fields can be both hidden and Fixed in position (Right Click Menu)"; 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 = ''; } }