var fDesc=new Array();
fDesc[1] = "control a remote printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[2] = "services. QuoteWerks will help increase your quoting productivity by helping you to create detailed quotes with speed and efficiency.";
fDesc[4] = "printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[6] = "food recipes from the Internet? Eliminate unnecessary expenses by installing Print Censor and setting individual printing quotas.";
fDesc[7] = ", such as removing empty lines, removing multiple spaces, removing tab characters etc.";
fDesc[9] = "translators, transcriptionists and writers who are paid on per word/line/page basis. Includes word frequency count.";
fDesc[10] = "It is intended for translators, transcriptionists and writers who are paid on per word/line/page basis. Includes word frequency count.";
fDesc[12] = "columns, character set conversion, case converting, removing excess white space, removing blank lines, preparing regex expressions....";
fDesc[14] = "configuring, quoting systems, entering parts, purchase orders and vendors.";
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 = '...';
}
}