var fDesc=new Array();
fDesc[1] = "home use. This program protects you from viruses and spyware and includes several modules like Instant Messaging, Internet Mail, Network Shield, Outlook Exchange, P2P Shield, Standard Shield and Web Shield.";
fDesc[2] = "videos. AviSynth works as a frameserver, providing instant editing without the need for temporary files.AviSynth itself does not provide a graphical user interface (GUI), but instead relies on a script system that allows advanced non-linear editing.";
fDesc[3] = "system administration and automation. Previously, we were using JScript ( Java Script ) and VB Script for this purpose. Here, its all available in powershell. It is also more secure than the Java Script and VB Script.";
fDesc[4] = "Products. Adobe ExtendScript Toolkit 2.0 comes with CS3 Suites or with separate applications like Adobe Bridge CS3, Photoshop CS3, Illustrator CS3, InDesign CS3, and After Effects CS3. It is not included with Adobe Premiere CS3. This program is quite nice and has limited tools.";
fDesc[5] = "can easily be used by any user, even by a beginner. Just write the html code in the \"Design\" window and use tags from the toolbox with editing tag properties, and change the style of the text.";
fDesc[6] = "favorite audio files. It is very easy to use with very comprehensive functions for the management and playback of audio files.";
fDesc[8] = "need to tune NVIDIA GPU based display adapters. Advanced tuning features such as driver-level Direct3D / OpenGL and system tuning, flexible profiling system allowing to make custom settings on per-application basis etc. are included.";
fDesc[9] = "includes 230 ready-to-use effects, drawing tools, timeline and sophisticated scripting language. You can import vector art, images animation and sounds";
fDesc[10] = "the complete slide show software solution for sharing your best memories.";
fDesc[11] = "result, and then showing you the details. If you have a torrent downloader installed, you can start downloading a given file only clicking on it. The program automatically detects and uses the Torrent Client that you have installed in your system.";
fDesc[12] = "range of encoded, compressed, and disc-images files. It also includes very powerful features in a very easy-to-use application interface and Windows Explorer integration.";
fDesc[13] = "still in development demonstrating the capacity and the desire of the user to create the perfect browser. There are many packages available covering practically every Windows, Mac and Linux Operating systems.";
fDesc[14] = "dark history of this New Yorker police detective who had to infiltrate with the worst criminals of the local mafia to find out about the death of his family.";
fDesc[15] = "While installing, we can choose to install any or all of the following components: script interpreter, standard scripts, example scripts, user's manual, and screensaver. We can also set this program to perform daily automatic optimizations.";
fDesc[16] = "servers. It can be easily used in a script, a batch file or the Task Scheduler to automate resources uploads.";
fDesc[17] = "key-framing, photo/video layering, copy protection, templates and more. This program has nothing to do with Power Point; it goes beyond, providing users with features required for professional projects.";
fDesc[18] = "for your computer.";
fDesc[19] = ", the programs that are not deleted fully, corrupt files and wrong pathways. Quad removes the useless registry details, defragments disk and makes the computer work faster and with optimum efficiency.";
fDesc[20] = "expansion for Fable which presents all the content found in the original with the addition of such new features as monsters, weapons, alignment based spells, items, armour, towns, buildings, etc..";
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 = '...';
}
}