var fDesc=new Array();
fDesc[1] = "features. Some of the common tools includes automatic brightness, contrast, gamma and saturation adjustment; red-eye removal, resize, rotate, crop and warping of images; a great number of filters such as smooth, sharpen, edge detection, etc.; among others.";
fDesc[2] = "planar and axis symmetric domains. It utilizes finite element analysis for the solution of problems. The problems are analyzed in a preprocessor stage where must be drawn the problem geometry, must be defined the materials and boundary conditions. The postprocessor is used to view solutions.";
fDesc[3] = "speakers with a mike, preamp, PC and sound card. Sixteen bit sampling rates up to 192 kHz and FFT lengths up to 128K points are supported.";
fDesc[4] = "spider crawls your entire site beforehand, making absolutely certain there are no \"dead ends\" for web spiders.";
fDesc[5] = "servers. It supports individual and group/domain accounts. Uses dial-up networking and operates on a time/frequency schedule you define.";
fDesc[6] = "size for burning to a CD/DVD?\". If these questions are familiar then try ViewFolderSize Pro, to directly view details of file and folder size.";
fDesc[8] = "frequency domain. Graphical, block oriented user interface with more than 80 basic elements. Creates time, Bode, Black-Nichols and Nyquist diagrams.";
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 = '...';
}
}