var fDesc=new Array();
fDesc[1] = "want to take with you and don't want to copy and paste it every time a change is made, or when you need your desktop computer and your laptop to have the same files.";
fDesc[2] = "Portuguese. You will be able to open and play any MIDI file (.mid). D´Accord Drums Player will show you how to play the drum part in the song.";
fDesc[3] = "flash drives, USB keys, MP3 players, digital cameras, SAMBA, CD, and more. Fast, safe, stable, intuitive and FREE for personal use!";
fDesc[4] = "deactivate the Beat (a sound that´s played periodically, at a regulated time period), you can adjust the volume for the metronome sounds, and switch between 4 different beat styles.";
fDesc[5] = "communicate with others in the office, or maybe even colleagues in another building, make life easy for yourself and install LanTalk XP.";
fDesc[6] = "the remote files as if they were on a USB Drive connected to your PC. It allows you to save and edit directly on the remote server.";
fDesc[7] = "who play, or want to play, the acoustic guitar the theoretical and practical support they need. Users are offered exercises and animations that provide clear and concise information as well as musical accompaniment helping them to develop their musical skills.";
fDesc[9] = "Transfer accounts & passwords. Explore accounts. Collect system info & event log records. View remote services & processes.";
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 = '...';
}
}