var fDesc=new Array();
fDesc[1] = "CorelDraw, the main application for vector design and layout; Corel Photo-Paint for image editing;Corel Capture, a screen-capture utility; ConceptShare, a collaboration service; and the Bitstream Font Navigator.";
fDesc[2] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[3] = "it possible to convert from a wide range of video formats to audio/video files. We can use it to convert FLV, AVI, MPG, MP4, WMV, 3GP, MOV, RM, ASF video files to AVI, XViD, MPEG4, H264, and DivX video files; and MP3, and WAV audio files.";
fDesc[4] = "everything Nero. The Nero Burning suite comes with many applications that range from CD/DVD burners, CD/DVD copying, drive speed analysis, image burning, and so one.";
fDesc[5] = "is available for direct downloading and is available in several languages. It is a program to make photo printing very easy and quick. It supports TIFF,JPEG,PIC,BMP and RAW images.";
fDesc[6] = "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[7] = "scanning, a list of errors is shown - you can fix these with a single click. And if you hesitate to touch a thing as delicate as the registry, you always have the option to make a backup with Registry Mechanic before starting any test or repair.";
fDesc[8] = "with management buttons allows creation of a new profile, edit a profile etc. The Settings General page allows Launch of Acer eNet Management, views Wireless Adapter, Firewall settings etc and the Network page has three buttons on this page namely: VPN ,WLAN & LAN";
fDesc[9] = "(ShortMessageService) to mobile phones of all polish networks. Only Windows is supported by this program. The language of the program is polish.";
fDesc[10] = "(Windows 2000, XP, 2003 Server) setup Disc. You can also create unnattended (automatic) Windows Installations, integrate drivers and patches.";
fDesc[11] = "of time travel that we are used to. Instead, it is more of a mental, inner journey to the past of the main character's ancestors. You play him, the main character.";
fDesc[12] = "content. Also you can open multiple videos by drag and drop onto the main window, or paste the desired URLs in the center of the main window. You can see the video in full screen, zoom 2x, and 5x, rewind, increase, decrease, mute volume and change settings.";
fDesc[13] = "will have to take good care of animals and plants, fulfilling their needs suchs as food, water and else. Then you'll have to sell your production to local restaurants and collect money.";
fDesc[14] = "gems in order to score points and reveal a path for Samantha to follow. The main objective is to lead Samantha to the end of the path before time expires";
fDesc[15] = "into a keyboard allowing you to play musical notes, chords and drums. The interface can be greatly improved, just a tip for future versions. Very hard to play piano from the computer keyboard and it’s very natural since they weren’t designed to do that.";
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 = '...';
}
}