var fDesc=new Array();
fDesc[1] = "technologies like HTML, Ajax or Flash. Developers can take advantage of their knowledge in website creation to develop multimedia applications. In other words, from a web application they can create a general application with the contents and utilities of a web application.";
fDesc[2] = "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[3] = "It takes you to the wonderful world of Egyptian pyramids, to search for uncovered priceless treasures. In spite of being a classic brick-breaking game, it turns out to be not repetitive or too easy as other games of this type may be.";
fDesc[4] = "cleaning / deleting unnecessary files. It can also be used as a tool to monitor your network usage. Realtime Disk, Network, Memory and CPU usage graphs are available. Not much features in the program. Anyway, rating 3.";
fDesc[5] = "Iroquois or the Germans, improving the Home City, and enjoying the first two single-player missions of the continuing tale of the Black family.";
fDesc[6] = "civilization, or as the imperialistic British. Players also have the opportunity to try out the new random map Honshu, and the King of the Hill game type.";
fDesc[7] = "loaded application that creates 3D animations of characters from a photo or still image. The user can pick from a number of funny effects like masks for creating custom back-grounds, advanced face settings for eyes, lips, teeth and mouth, and they may be imported to match a character accordingly.";
fDesc[8] = "the following functions: intelligent coding, debugging stratified interactive, visual design of the distribution of the elements of the user interface.";
fDesc[9] = "decorations, lets you add music and backgrounds. Supported output formats include: MP4, AVI, WMV, 3GP, WMV2 and the possibility to burn DVD discs.";
fDesc[10] = "based media experiences and rich interactive applications for the Web. By using Expression Studio and Visual Studio, designers and developers can collaborate more effectively using the skills they have today to light up the Web of tomorrow.";
fDesc[11] = "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[12] = "applications with animated banners or gif files, as well as capturing the snapshots from video files. The application allows the user to easily capture frames from video and turn them into treasured photographs.";
fDesc[13] = "when constructing statements. The Anagram Genius software uses friends’, colleagues’, and competitors’ names to alter the structure in ways that are unbelievable.";
fDesc[14] = "run on your desktop computer without a web browser, they provide all the convenience of a desktop application. Companies like eBay and AOL are using Adobe AIR to create exciting new applications that allow you to use their services on your desktop.";
fDesc[15] = "usage of your computer. This software might be very useful for parents who want to limit time of using computer for their children. The huge advantage of this program is that it can’t be stopped without knowing a special password.";
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 = '...';
}
}