var fDesc=new Array();
fDesc[0] = "CSV File Format Checker is a simple program that allows you to verify the integrity of a CSV file. To check a CSV file for errors, you just have to select the filename in the listbox and click the "Check For Errors" button, or double-click the filename in the file listbox.";
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 = '';
}
}