var fDesc=new Array();
fDesc[1] = "that had ENTER or NEWLINE inside. Some times I wanted to replace my TABS inside some textfiles. This program also supports plain textfiles, Unicode and UTF-8 files. To be able to do all these things in an easy way, I created Search And Replace.";
fDesc[2] = ", Windows and Excel documents. The program has an intuitive interface and is easy to use. It will scan a document and will allow you to save it without the duplicate lines you have chosen.";
fDesc[3] = "plain english about anything you want and it will respond and learn as you speak, it supports multiple users and remembers them individual...";
fDesc[4] = "page tabs as needed (e.g. a page for personal contacts, a page for business contacts or even a page just for extra telephone numbers). Organize contacts with index keys, and group them into an unlimited number of categories. Associate an unlimited number of documents with any contact; simply click the required document to view, edit or print it. Or associate Internet URLs. Support for E-Mail addreses with direct links to an E-Mail client.Create reminders with alarms to remind you of approaching events (birthdays, invoices due), and attach notes. Print avariety of listings and reports, plus envelopes, address labels, and more. Export and import entries to and from textfiles. Use the Calendar View, to consolidate reminders from all opened Address Books and events from all openedDiaries. Also features powerful search capabilities, automatic dialing of telephone numbers (via TAPI)...";
fDesc[5] = "Internet, and view pictures and textfiles. Commander Win is a practical tool for everyday handling your PC.";
fDesc[6] = "tables in textfiles, and to convert data in textfiles to finished HTML documents.";
fDesc[7] = "test queries. The database explorer and the SQL toolbox simplifies the process of building SQL statements. All your results are displayed in a flexible grid with column sorting, grouping and the possibility to print reports, to drag the data to other applications like MS EXCEL. You can export database information like fieldnames, datatypes, tables and views, recordcount and so on to textfiles. Syntax coloring and the possibility to use comments makes the handling of large queries easy. Features: - database explorer to view database tables and views - view table and view fields with datatypes and size - SQL toolbox with often used SQL keywords - SQL syntax coloring and formating - work with as many queries as you like simultaneously - export results to a text or XML file or use drag and drop - simple report writer - flexible grid view for results - grouping and sorting of results - one...";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}