var fDesc=new Array();
fDesc[1] = "music and stories recorded by the user himself. It is very simple and easy to use, but it doesn't allow adding visual effects to presentations or editing pictures. It runs on Windows Vista and all versions of Windows XP.";
fDesc[2] = "another size/type (i.e. WAV to MP3, or MP3 to OGG without creating an intermediary WAV), get rid of your bulky audio CDs lying everywhere, convert channels (stereo to mono) or change bitrate or frequency. It is the fastest and most affordable audio converter currently on the market. Audio Converter is unique - it supports most popular formats of audio.";
fDesc[3] = "converted into an electronic file). eBooks are a safe way to share, transport or even sell data that is copyrighted or is in need of a DRM (Digital Rights Management) encryption code. Mobipocket is a good program for anyone wishing to save personal writings in a safe environment.";
fDesc[4] = "and with great speed. It does this by providing a variety of methods which keep the interest of the user, including lessons involving simple key sequences for beginners and full paragraph writing practice, based on the \"Alice in Wonderland\".";
fDesc[5] = "application displays a lot of information about your hard drive that you can use to determine its overall state. S.M.A.R.T. is a communication means between your hard drive and your computer's BIOS.";
fDesc[6] = "word in a given number of tries, depending on the word length. The general play of this game is very similar to that of the Hangman, but in Word Dummy, we became a Dummy if we loose.";
fDesc[7] = "create the smallest PDF files available - from any Windows application software. Simple to use - highly efficient.";
fDesc[8] = "fullest extend. It will make you cheerful, well wishing and highly successful in your life. Well and you will also enjoy to pass through the animated 3D tunnel of aliens.";
fDesc[9] = "enjoyable, more playable and exciting? Well, stop wishing now, because you can get all that and more with GeBall. If you are into the classic breakout and arkanoid style arcade games, then you are in luck. GeBall is everything you know and love about arkanoid.";
fDesc[10] = "In fact music is present every time, quite often very repetitive and annoying. We have to find the name of this fairy tale by consulting to the rest of them (8 in total) and going along a map with different locations.";
fDesc[11] = "problem links. Link Checker Pro combines powerful features and an easy to use interface and is robust enough to deal with corporate websites containing 100,000 links or more. Major features of Link Checker Pro include extremely fast operation through the concurrent checking of multiple links, support for all major protocols (including HTTP, HTTPS, and FTP), the ability to create a graphical representation of the website, export of data into a number of different formats, and being fully configurable.";
fDesc[12] = "ideas, to replace/augment an existing system; fully customizable with multi-database feature, allowing the user to keep track of virtually anything.";
fDesc[13] = "You play George, the computer, for a cent a point. George is not so stupid and he will do his best to get your cents.";
fDesc[14] = "skills, without dealing with web programming stuff and without using a retouching software for their pictures.";
fDesc[15] = "quickly look up a passage in the Bible or work with InterFaith studies.";
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 = '...';
}
}