var fDesc=new Array(); fDesc[0] = "CSV and other delimited text files are the most common file format used to transfer data between one application/website to another application/website. Sometimes because of size limitation on uploading and downloading, we may need to split a large CSV file into small parts and vice versa, we may need to merge many small files into single file.

To answer these challenges, this handy tool is designed for the end users to easily split and merge csv and any character delimited (semicolon, tab, pipe etc) text files."; 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 = ''; } }