var fDesc=new Array();
fDesc[3] = "unconstrained environment for designing neural networks for research or to solve real-world problems.";
fDesc[4] = "name, ingredient, glass, recipe, or category. View sorted by name, first ingredient, glass, category, marked, or only those that can be made. Liquor Cabinet finds the drinks you can make based on what ingredients you have. Now does a 'Fuzzy' search. Shopping List gives you a list of what you need to buy and how much for the drinks you select. Ingredient Highlighting highlights ingredients that are missing (this can be turned off). Calculation of drink cost and price based on user settings. Mark the drinks you like to find them again quickly. The shareware version comes with over 3000 drinks.";
fDesc[6] = "computing capabilities allowing users to leverage the power of NeuroSolutions (www.neurosolutions.co m) inside MATLAB and Simulink.";
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 = '...';
}
}