var fDesc=new Array();
fDesc[1] = "for ZIP/ARJ/LHA/RAR/UC2/TA R/GZ/CAB/ACE. Command line, full text search also in packed files, button bar,FTP client.";
fDesc[2] = "DVD from home videos. You can playback digital media files, and make an archive song collection in MP3. You can also backup personal data and legally record DVDs.";
fDesc[3] = "button bashing and combat is that of an arcade fighting game. The 2D environments blend nicely with the game-play and it does make a good combination. This game is not for everyone but it's free, so you can try it without problems.";
fDesc[4] = "languages C/C++. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can be easily used in combination with Cygwin or any other GCC based compiler.";
fDesc[5] = "that you forget about running applications from the Start Menu. And it makes sense. I use a similar application on Mac OS X, Quicksilver, that is great.";
fDesc[6] = "for keyboard,create hotkeys for any application ,it means you can run any application using any two or desired key combination.AutoHotKey can create hotkeys for every input device like keyboard,mouse,joystic k or any hand held remote controls.";
fDesc[7] = "It can scan for wireless networks and try to hack in. It can try to decrypt database files like those of dBase, Excel, MS Access, FoxPro, etc.";
fDesc[8] = "changes is the ability to turn into a werewolf during game-play. The game is fun itself, but it is plagued by a lot of technical issues.";
fDesc[9] = "a professional way? Avidemux is a versatile video utility designed to simplify the tasks of cutting, filtering, converting and codifying videos. It supports many video and audio formats, and you will be able to design video projects with high quality results.";
fDesc[10] = "transitions effects. The interface is friendly and contains a number of assistants to guide those who have just began. You can save files to disk or burn them directly to a DVD. It may be somewhat limited for those seeking complex issues.";
fDesc[11] = ", boot screen, icons and many other resources in Windows XP, with a darker more slick and smooth looking theme. Through the XPize settings you can change the icons size and spacing, wrap their titles or even hide the icons.";
fDesc[12] = "combination of real and arcade elements that make the game fun and entertaining. The game still has a lot of players and it is still going strong, 11 years after its first release.";
fDesc[13] = "Games, Sid Meier's Civilization IV: Beyond the Sword offers the widest array of developments in the history of the Civilization franchise.";
fDesc[14] = "to any other format. It supports a very wide variety of file formats without the need of third party software.";
fDesc[15] = "fast-paced action and a lot of detail everywhere. Characters are all identical to those in the movie. The game itself could be considered a prequel to the movie, but I don't want to get into spoilers.";
fDesc[16] = "the program it is not necessary even to touch the mouse. Use Hot Key long combinations with two and more keys in one time.";
fDesc[17] = "converter, Any Audio Converter can convert audio between MP3, WMA, WAVE, AAC, M4A and OGG formats as well as convert other unprotected audio formats. As an audio extractor, Any Audio Converter can extract audio from all popular video formats and online videos from YouTube, Google Video and Nico Video. With Any Audio Converter, you can easily convert your audio files to MP3, WMA, WAVE such as M4A to MP3, APE to MP3, RA to WMA, FLAC to WAVE, etc. You can also extract audio from video clips such as AVI to MP3, MP4 to MP3, WMV to WMA, RMVB to MP3, etc.";
fDesc[18] = "players on a single PC and up to eight characters on screen in online mode. This new version has four Battle modes, a survival Stage, a game recording feature and background music.";
fDesc[19] = "Digs and Marine Mania for the players imagination to fly free while they are taking caring for more than 100 land, seas and extinct creatures in the most amazing and realistic possible way.";
fDesc[20] = ", those videos that we love to watch at www.youtube.com can be downloaded and played on the computer. This application does exactly that. It downloads the .FLV file hosted by YouTube to your computer.";
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 = '...';
}
}