var fDesc=new Array();
fDesc[1] = "with this program besides being convenient, save resources and is complete in all the aspects, covering every point. With its multiple ads makes it the best choice to take it into your software collection.";
fDesc[2] = "format, KGB. It has an interface that works as a wizard, adds its options to the Windows Explorer, and shows the statistics after compressing / decompressing.";
fDesc[3] = "benefits. We can use Monkey's Audio to compress and decompress our audio files and convert them to and from *.ape format. No matter how high or low our knowledge is, after reading the user“s guide we can proceed to select a wav file and start compressing it to ape.";
fDesc[4] = "OK, at best. It is still in an experimental stage, so I will be easy on them. BitTornado attempts to be a fast BitTorrent client, thus the name. Or messy, maybe?";
fDesc[5] = "necessary tools and library to architects, designers, builders to design, document and construct their modeling projects. It features bi-directional association, material takeoff, parametric components, design options and visualization, etc.";
fDesc[6] = "USA or Canada. It has been developed by combining AutoCAD and architecture features to provide architects with the necessary library and tools for drafting, designing, drawing, creating, rendering, sharing, scheduling, dimensioning, drawing compare, etc.";
fDesc[7] = "updates and a huge malware database help you stay protected. Real Protection with \"Submit State\" - clean your PC with the next update.";
fDesc[8] = "multiple options and a lot of fun. Some of the options that we can mention are: the multiple connections to chat rooms at the same time, public and private conversations and the file transfers, configurations options for the appearance of the software, add of scripts, add of multiple plug-ins, etc.";
fDesc[10] = "to your preference, select a suitable layout and with a click you have a professional FAQ document.";
fDesc[11] = "program or enter a very short musical phrase of a few notes, and hear it transformed into an intricate tracery of music. The music is fractal which means it is highly structured, but natural sounding too, like bird song, or the sound of the wind. Any tuning is possible; no need to restrict your creativity to the equal tempered twelve tone system or even the octave. Tune your music as freely as a bird when it sings. Try authentic historical temperaments with tunings for keyboards from Bach or Mozart's time. Try tunings for Indonesian Gamelans, or Indian music with drones. Try modern exotic tunings such as non octave scales, or musical geometries with highly symmetrical floating chord patterns. Explore the effects of instrumentation, and take ones first steps as a composer in an envionment where melody making is effortless. Suitable even for complete newbies to composing - and there is...";
fDesc[12] = "drug tests.";
fDesc[13] = "easy and quickly with FAQ-Express.";
fDesc[15] = "much more. You can export the whole outline easily.";
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 = '...';
}
}