var fDesc=new Array();
fDesc[1] = ", find, and share your notes and information more efficiently and effectively. The program features powerful search capabilities that help you locate information quickly and easy-to-use shared notebooks that allows you to manage information overload, whether online or offline.";
fDesc[2] = ", new panels for Masks and Adjustments, on-the image that we can apply some adjustments to the style of Photoshop Lightroom, a 3D engine, and then only for begin.";
fDesc[3] = "tools as in Microsoft Office, Writer, Cal, Draw, etc but in a freeware version. It is easy to use and install and you can also open extensions such as .doc, .xl, etc.";
fDesc[4] = "twelfth delivery is the appearance of the user interface. In short, a very complete range of solutions that will be to the liking of the more novice users and those who want to further customize their productions.";
fDesc[5] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[6] = "contains ... (1) Access 2007 - database management.. (2) Word 2007 - Word processing. (3) Excel 2007 - spreadsheet. (4) PowerPoint 2007 - presentation software. (5) Outlook 2007 - Email and Personal Manager. (5) Publisher 2007";
fDesc[7] = "folders to existing images, and also compress, add encryption, mount images etc. Among the features of the new version we get: compatibility with Windows Vista, support for multiple languages and command-line parameters support.";
fDesc[8] = "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[9] = "plug-ins: Vinyl Restoration™, Noise Reduction, Clipped Peak Restoration™, and Click and Crackle Removal™ plug-ins. Save valuable time and money by applying the Noise Reduction processing power to salvage vintage vinyl recordings, and rescue problem tracks.";
fDesc[10] = "surround, dynamic boost, and Hyperbass. You can also change processing modes from a group of presets and listening environment between speakers and headphones.";
fDesc[11] = "application. A good aspect of this software is its interoperability and wide range of platform supported such as MAC OS X, all windows platforms, QNX Neutrino 6.2 meaning almost every other operating system.";
fDesc[12] = "VirtualDub is a video capture/processing utility for 32-bit Windows platforms (95/98/ME/NT4/2000/XP) , licensed under the GNU General Public License (GPL). It lacks the editing power of a general-purpose editor such as Adobe Premiere, but is streamlined for fast linear operations over video. It has batch-processing capabilities for processing large numbers of files and can be extended with third-party video filters. VirtualDub is mainly geared toward processing AVI files, although it can read (not write) MPEG-1 and also handle sets of BMP images.";
fDesc[13] = "and text watermarks to your documents. Thanks to its intuitive and user-friendly interface, you can perform this boring task with a few clicks. It also allows you to apply the same watermarks to multiple images at the same time.";
fDesc[14] = "enhance them. What is more, it also allows you to capture screens, create layouts, and select colors from a webpage, which makes it a great tool for web designers.";
fDesc[15] = "enabled computer (with Java 1.4 or later virtual machine). ImageJ can display, edit, analyze, process, save and print 8-bit, 16-bit and 32-bit images.";
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 = '...';
}
}