var fDesc=new Array();
fDesc[1] = "quality of the digital image. PureImage has a great set of features attached to it. The wavelet Noise reduction is the best feature of this software. The auto-tuning of the noise function enables.";
fDesc[2] = "enterprise instant messaging by packaging all required technology in a safe application. It is also is the most advanced and customizable multi-user chat with flexible capabilities in the industry. Google Talk, taking small hard disk space , download size, and memory.";
fDesc[3] = "in real-time via instant text and voice messages. It provides public/private messaging channels, voice chat room, etc. We can customize the program language from the settings options, set user names, passwords, and specify permissions for each one.";
fDesc[7] = "installing on only one machine. NOTE: E.M. does not require IT's dedication to deploy, anyone can do it.";
fDesc[9] = "Network). Serverless (P2P) messaging; No dedicated server or Internet connection is required.";
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 = '...';
}
}