var fDesc=new Array();
fDesc[0] = "Easy Tables allows you to create tables, open or save them in comma-separated CSV files.
Main features:
- Add, edit, copy and paste text like in Excel.
- Filter data based on column values and expressions directly in the main screen.
- Change column names and column order.
- Find or Find-and-Replace text.
- Use formula's to automatically calculate values in a certain column.";
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 = '';
}
}