var fDesc=new Array();
fDesc[1] = "science of itself. We are very proud of being able to deliver you the perhaps fastest, most flexible and most transparent sounding simulation of an analog vocoder effect as a new plug in for your favourite host, created by the same people who devloped our virtual analog NorthPole Resonant Filter. Following the long tradition of German Vocoder manufacturers, Prosoniq offers you an all-digital simulation of a realistic analog vocoder effect that is fully customizable and comes with an 8-voice virtual analog synthesizer unit, Freeform EQ and Filterbank Reverb, all in one plug in.";
fDesc[2] = ", address lists, dates or bookmarks! Additional you have a very fast power search and can set up Alarms!";
fDesc[3] = "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[4] = ", FoxPro, Microsoft Excel documents, Interbase/Firebird, Lotus 1-2-3, MySQL, Oracle, Paradox, SQL Server, Text, ODBC, XM";
fDesc[5] = "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[6] = "Users are presented with a smart, black interface that is simple and intuitive with a wizard style menu. Mercury Audio Player supports freeform skins so that users can have the look of player that they would prefer.";
fDesc[7] = "picture, transfer picture onto a pattern, and put text into your pattern. It includes a pencil for freeform drawing, eraser, dropper, flood filler; draw lines, triangles, diamonds, pentagons, hexagons, octagons, ellipses, rectangles, etc. Also you can print and export patterns.";
fDesc[8] = "capture, organize, and recall all of your electronic information across all the applications that you use.";
fDesc[9] = "products and freeform search tool. Download the latest freeware products straight to your harddrive without the need for endless web surfing!";
fDesc[10] = ", presentations, photo journals. Make your own flash cards. Share with team mates and collaborate.";
fDesc[11] = "From the authors of PrivateExe, DoubleDesktop, and Fat Free Games - http://www.fatfreesoft .com. A MUST SEE!";
fDesc[12] = "real-time gameplay events. Master freeform gameplay in your quest to achieve wealth and power.";
fDesc[13] = "around your everyday life. Scheduler feature prompts you of appointments and to-dos. Has Phone Dialer.";
fDesc[14] = "charts can be entirely freeform. Link a subchart and pages of text comments to any symbol. Included are more than 400 ANSI-standard and custom symbols. Even \"teach\" symbols how you would like them to scale, to handle text, etc. Turn almost any graphic into a smart symbol with intelligent attachment points. Comatible with it's best selling counterpart MacFlow, WinFlow has set the standard in easy to use cross-platform flowcharting applications since 1986!";
fDesc[15] = "content with friends or co-workers, even if they don't have a copy of Personal Knowbase. Free for personal use.";
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 = '...';
}
}