var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = "able to look for files in hard drives, Email attachments, local network or even the internet. The program adds itself to the taskbar where the user types the name of the files to look for.";
fDesc[3] = ", ALZip is free, it handles over 30 compression formats, including ISO, plus it is twice as fast extracting files as WinZip. Among other useful features, the program also includes a password recovery tool.";
fDesc[4] = "speakers or ear phone. It actually generates different sound waves with different frequencies, wavelength, pitch and intensity, and when you listen these sound waves as a sound by using ear phone for some time then your brain will be stimulated.";
fDesc[5] = "ready for the contest called Town of the year. The game is the second release of the sequel and includes great improvements and amazing new features.";
fDesc[6] = "games I have ever played. There are many different types of strategy games, but I particularly like the ones in which you have to gather resources and create a strategy in order to prevail. Empire Earth 2 is one of those games.";
fDesc[7] = "in order to create a new user account. After that, the game will check your system in order to configure your sound card and preferred instrument to play the songs.";
fDesc[8] = "musical instrument) and convert it into a standard MIDI file. This file can be played by any synthesizer with a different voice of your choice, or you can import it into your favorite sequencer or notation software (e.g. Cubase VST, Cakewalk, Sonar etc. ) for mixing with other tracks, automatic transcription, or further processing. Digital Ear reads standard PCM audio (.wav) files.";
fDesc[9] = "particular note by listening to a random sequence that includes the note. When you are confident you know the note, you can take a test.";
fDesc[10] = ", you will be able to practice: Reading notes, Train your ear, and learn to play a score with different instruments. This is a 3 in 1 musical software that will definitely improve your musical skills.";
fDesc[11] = "you learn at your own pace. It requires no previous knowledge of music and its \"Cartoons\" option makes it even more fun.";
fDesc[12] = "authoritative knowledge of traditional Chinese medicine. The expert system from differentiation, comprehensive acupuncture...";
fDesc[14] = "possible to develop your attention, your aural skills and your musical memory.";
fDesc[15] = "Develop the ability of playing whatever is in your mind without hesitation and without mistakes, improve your improvisation.";
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 = '...';
}
}