var fDesc=new Array();
fDesc[1] = "use. Whenever a more recent version of any programme becomes available, Software Informer notifies you and offers a link for downloading the update. It also allows you to keep track of comments and questions on corresponding software.";
fDesc[2] = "overview that helps you keep track of your expenses. Put savings targets and then perform a monthly analysis of your finances to see how much you're really saving.";
fDesc[3] = ", Impress (presentation), Calc (spreadsheet), Base (data base utility) and Draw (a drawing program). Same as Microsoft Office suites, the software calls the necessary program to accomplish the desired duty.";
fDesc[4] = ", but will also make music selections for you according to the type of music you wish to listen to. Using the ID3 tagging system, Mufin MusicFinder will create playlists of your favourite music genres and will allow you to transfer the desired tracks to your portable player or to burn them to CD.";
fDesc[5] = "fictional in nature. That is to say, there is an alien species and technology is much more advanced that the tech present in Battlefield games. But the gameplay is kind of the same.";
fDesc[6] = "The base is attacked by the air forces of the enemy. The enemy troops are landed periodically.";
fDesc[7] = "with walls, using the arrow keys to move and the space bar to fire. When you beat an enemy wave, you can go to the next level.";
fDesc[8] = "eliminate you and your base, and your objective is to defend the base and to survive yourself.";
fDesc[9] = "software and will provide them with high quality virtual string instruments, a drum set, bass guitar, and electric piano. With this software installed, users can build sections for their songs, practice, or jam.";
fDesc[10] = "calculator. You can select from two styles of algebraic input or RPN. DreamCalc comes with a full range of scientific, statistical and financial functions.";
fDesc[11] = "tracks on line. Fraunhofer technology is used for music recognition. Real analysis for audio files, that match the user search rules on PC, MP3 player or iPod device. The built-in MP3 Manager detects music files analysing them before they're on the list.";
fDesc[12] = ", documents and web pages which allows user to keep documents systemized, to add notes and attachments.";
fDesc[13] = ", situated on an island, is being attacked by the air forces of the enemy. The enemy´s attack is done by planes, helicopters and paratroopers. You must destroy the flying machines, and kill the troops that land.";
fDesc[14] = "information regarding every bank in the US. Phone number, State, Zip Codes, etc. Also contains information about AMEX, VISE, MASTERCARD, routing numbers.";
fDesc[15] = "different measures. The program can convert numbers between decimal, binary, hex and octal. This easy-to-use software will convert the numbers automatically as you type the numbers on the program's main window.";
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 = '...';
}
}