var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[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] = "will be able to open FLV files and watch them with an excellent image quality. The FLV files are the files used to deliver video over the Internet. The video files you download from YouTube and other video-sharing websites are FLV files.";
fDesc[6] = ", 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[7] = "compatibility and an easy to use API. GTK+ it is written in C, but has bindings to many other popular programming languages such as C++, Python and C# among others. GTK+ has a large development community, as can be seen by the lists of contributors in GTK+ release announcements.";
fDesc[8] = ", photo browser and Photo Story utility. The Digital Image provides a great functionality for organizing, viewing and storing photo archives. You can control your photos through a combination of digital-imaging tools with helpful wizards and professional-quality photo projects.";
fDesc[9] = "the complete slide show software solution for sharing your best memories.";
fDesc[10] = "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[11] = "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[12] = "XML-based protocol that is designed to exchange structured and typed information on the Web. The purpose is to start up rich and automated Web services based on a shared and open Web infrastructure.";
fDesc[13] = "without pressing the two keys simultaneously as is usually required. Using Accessibility also lets you make the Fn key a sticky key, meaning you press it once, release it, and then press a function key to activate the hot key function";
fDesc[14] = "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.";
fDesc[15] = "amount of points possible in 20 spins. The game presents 3 modes: Classic, Mixed Matrix, and Patterns. You can change backgrounds, keep track of your scores, and control audio. Not available for Mac.";
fDesc[16] = "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[17] = "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[18] = "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[19] = "WPF base (Windows Presentation Foundation). WPF is a graphical subsystem in .NET Framework 3.0 and later versions. It uses a markup language, known as XAML, which can be used to create a rich development interface.";
fDesc[20] = "outer world, you should be careful about possible outcomes of it; some bad guys can use your hard work as their own creation or can misuse images for illegal purpose.";
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 = '...';
}
}