var fDesc=new Array();
fDesc[0] = "This plug-in is an implementation of one of the most used classes in the Delphi world: TStringList. This class is useful in several ways and basically maintains a list of in-memory strings that you can manipulate using the appropriate actions.
You can keep a list of strings with or without duplicates, search for strings, add, attach, insert, delete strings; use name and value pairs strings, set or get delimited text or not, save and load strings to/from a file, be informed when the list changes ...
You can sort the list of strings, and keep them sorted in memory (even when adding new strings), you can specify a delimiter and "quote" character, for example, to import / export information in CSV format ("Comma Separated Values") or similar files and much more.";
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 = '';
}
}