var fDesc=new Array();
fDesc[1] = "browsing menu will help you navigate your disc easily. It is compatible with MP3, WAV, WMA, OGG, MPG, AVI, WMV, ASF, AC3, RM formats and allows Direct CD to DVD Copy.";
fDesc[3] = "on the Internet and/or printed out. This program features a neat user interface with step-by-step wizards that help us make our own custom forms for polls, customer satisfaction surveys, and all sorts of consumerism and opinion surveys.";
fDesc[4] = "interface similar to that of Office 2007 and allows you to create surveys and polls and then share those. You can create surveys using one of the many templates available. The surveys look rather plain, but I don't see a need for fancy graphics here.";
fDesc[7] = "different SNMP-OIDs. Additional you can set thresholds to color critical values and transform numerical value...";
fDesc[8] = "conduct exams or surveys over the web, over the phone or with a printed questionnaire form.";
fDesc[10] = "retrieved via emails and copied to WQ automatically. No CGI or DB programs are needed.";
fDesc[11] = ", employees, or other target groups.The program features a simple and user-friendly interface, which does not require any HTML knowledge.";
fDesc[12] = "to subscribe/unsubscribe to/from the mailing list. The number of lists that can be maintained is not limited.";
fDesc[13] = "newsgroups. Uses various filters to check only topics you're interested in.";
fDesc[15] = "instantly online. No CGI bin. No MySQL. Unlimited 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 = '...';
}
}