var fDesc=new Array();
fDesc[1] = "very high speed rotation that can sometimes occur when ripping CDS or DVDs to the hard drive. Acoustic Silencer will not remove defects caused due to improper disc geometry or defects in the drive clamping mechanism.";
fDesc[2] = "objects from digital photos.";
fDesc[3] = "effects to your photos. Within the application you will find a wide set of useful effects like: Rotate to left or right, fix red eye, enhanced color, denoise, deblur, make up, lighting, straighten, resample and crop.";
fDesc[4] = "projects. It comes with a full, easy to use Windows installer. Unlimited user license. 30 day trial.";
fDesc[5] = "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[6] = "clear user interface and rich functionality. Based on Java technology it can be installed on any operating system.";
fDesc[7] = ", Marketing Campaigns, Opportunities, Quotations, Sales Orders, Invoicing, Purchase Orders, Links to Sage Line 50 andQuickbooks, Diary, Email Centre plus ..";
fDesc[13] = "that resembles a typical scope matrix. Each of your requirements is mapped to one or more test cases that can be used to validate that your functionality works as expected. For the tester, SpiraTest provides the ability to execute groups of your test cases - along with their test steps – so that the testers can follow the instructions and determine if the system being tested behaves as expected. Any deviations from expected behavior can then be recorded as defects and managed in the defect tracking module. In addition, SpiraTest has personalized dashboards of key project information. All of the information you need to see the health of the project - requirements coverage, test case execution, issue summaries, bug counts – on one page.";
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 = '...';
}
}