var fDesc=new Array();
fDesc[1] = "e-mail, calendaring, group scheduling, to do list and more. Notes users can exchange messages via the Internet, work with any Web application, read and post topics to Internet newsgroups, search Web directories, and use X.509 certificates for security. Notes even lets you access your e-mail and other applications while you're off-line -- with full fidelity -- and gives you the option to synchronize your work later.";
fDesc[2] = "unconstrained environment for designing neural networks for research or to solve real-world problems.";
fDesc[3] = "recording and high quality up-sampling. Support wav, aif, flac, mp3, ogg. Play and rip back disc. Great user interface.";
fDesc[4] = "computing capabilities allowing users to leverage the power of NeuroSolutions (www.neurosolutions.co m) inside MATLAB and Simulink.";
fDesc[7] = "management programs, it gives you oversight and control over all of the competing claims on your time and energy. MLP with its unique Projects Overview pane shows you at a glance the status of all of your projects and tasks, while its Productivity Points help you measure your daily and weekly productivity. MLP helps you make time in your busy life for the things that matter by creating Task Appointments either manually or automatically for you. Pick a time period this week, and the program can schedule for you Task Appointments to complete that critical project. And because your priorities may need to change, MasterList Professional makes it just as easy to reschedule your day or week when you need to. The more things you are trying to get done, the more ways you need to see those things. With MLP, you can create as many different views of your MasterList, your Current Task list and...";
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 = '...';
}
}