var fDesc=new Array();
fDesc[1] = "is the platform that uses Microsoft's digital media, I mean the system is used by Microsoft for the realization of digital media: video, audio, etc, using our exclusive formats from Microsoft, and usually ASF and WMV.";
fDesc[2] = "loss in sound quality";
fDesc[3] = "arises for the regular PC users, who have plenty of space at hand. It is no shock to hear that PSP users, who are limited to memory cards for ISO mounting on their units, need to compress ISO files.";
fDesc[4] = "can compress your video file in high quality. TMPGEnc enables you to adjust the bitrate, quantize matrix, GOP structure, Interlace and many other parameters so that you can create the most appropriate movie file for your purposes. MPEG2 encoding availible to try for 30 days.";
fDesc[5] = "includes a great variety of editing functions and various effects that include Equalizer, Fade, Amplify, Delay, Invert, Flanger and many others.";
fDesc[6] = ", labeling, applying color codes. It allows you to search, view, prioritize and convert between formats. The developer doesn´t provide trial copies of this version.";
fDesc[7] = "Windows applications and web pages. It includes advanced text search capabilities and a 'favorites' tab to save the more often searched topics, themes and/or terms. The application itself includes an image editor to help user on including the help file to the developed and compiled program.";
fDesc[8] = "decided to change its name to FFSJ: The Fastest File Splitter and Joiner. Some name, huh? Anyhow, what this application does is cut your files into smaller parts so that you can fit them in certain media or e-mail it.";
fDesc[9] = "as Microsoft Office maintaning their original layout, open existing PDF files, send PDF documents as attached files by email, set passwords to insure documents privacy, print any document, add watermarks, compress files, merge or split documents, etc.";
fDesc[10] = "25 file compression formats, including StifX, ZIP and RAR. It is more likely that you will only need to have this program installed to decompress any archive file you download from the web, or receive ones attached to your emails.";
fDesc[11] = "your files. It has a lot of extra features. Stuffit allows you to compress all your files and password protect them. It also remembers the locations of all your files, so that you don't have to remember yourself.";
fDesc[12] = "specify whether that drive needs to be SCSI or IDE! The program is very easy to use. and gives a simple interface. We can create images of disks, load them in the virtual disk, with some emulations like Laserlock & Securom, or burn the disks.";
fDesc[13] = "centers and watch videos on the go. Windows Mobile devices are small and useful devices, but multimedia capabilities are not the strong point of them.";
fDesc[14] = "FileCompress software represents the simplest way to use the UHARC with all of its components. The software supports creation and extraction of archives and creation of self extracting archives(SFX).";
fDesc[15] = "decompress your files. It has a lot of extra features. Stuffit allows you to compress all your files and password protect them. It also remembers the locations of all your files, so that you don't have to remember yourself.";
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 = '...';
}
}