var fDesc=new Array();
fDesc[1] = "distorts it before playing it. Translator Fun is a free voice pack that contains seven new voices: Body Noises, Burpalator, Computer Talk, Phone Talk, Random Body Noises, Random Censor and Xylophone.";
fDesc[3] = "control a remote printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[4] = "printing depending on the calculated cost, paper size, print quality or volume, use of color or black ink or toner, or password.";
fDesc[6] = "printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[7] = "food recipes from the Internet? Eliminate unnecessary expenses by installing Print Censor and setting individual printing quotas.";
fDesc[9] = "management and monitoring at an affordable price. Make sure you don't miss Print Censor Enterprise and it won't miss a single print job in your company!";
fDesc[11] = "include both sexy ladies in provocative dress and pose. So hot that we had to censor one image for public distribution.";
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 = '...';
}
}