var fDesc=new Array();
fDesc[1] = "some one totally new. Just integrate Fake Voice with your IM and do voices with your friends.";
fDesc[2] = "notes in a very simple way. You will be able to add notes by simply clicking with your mouse. You do not have to be an expert on software or a great musician in order to use this program.";
fDesc[3] = "great. Listen to the song while you follow the notes on your screen. Then edit the notation and the sound of the music.";
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 = '...';
}
}