var fDesc=new Array();
fDesc[1] = "in your computer) by storing it in a Database. What you do is create an Ultra Recall Database (*.urd file). You can create any number of database files and save them anywhere, transfer them to another system, etc";
fDesc[2] = ", FoxPro, Microsoft Excel documents, Interbase/Firebird, Lotus 1-2-3, MySQL, Oracle, Paradox, SQL Server, Text, ODBC, XM";
fDesc[3] = "information in a proper way. Using a keyboard just type the text, copy it from other files or just drag it from other sources. In whatever way, your intention will be fulfilled and you can access your data at any time.";
fDesc[4] = "capture, organize, and recall all of your electronic information across all the applications that you use.";
fDesc[5] = ", presentations, photo journals. Make your own flash cards. Share with team mates and collaborate.";
fDesc[6] = "From the authors of PrivateExe, DoubleDesktop, and Fat Free Games - http://www.fatfreesoft .com. A MUST SEE!";
fDesc[7] = "content with friends or co-workers, even if they don't have a copy of Personal Knowbase. Free for personal use.";
fDesc[8] = ", FoxPro, Microsoft Excel documents, Interbase/Firebird, Lotus 1-2-3, MySQL, Oracle, Paradox, SQL Server, Text, ODBC, XM";
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 = '...';
}
}