var fDesc=new Array();
fDesc[1] = "upload them into your iPhone or PSP. It is possible to use various video filters to smoothen overpixelised graphics, or compress some resource files - or even use soundfonts to make the MIDI music sound more like an orchestra.";
fDesc[2] = "choice. Various sounds can be created with just one sample. Composed song can be export as a WAV file.";
fDesc[5] = "schools, choirs, orchestra, amateur theaters and so on to help to organize small- and medium-sized events. This program can be a good alternative to complex graphics programs. It is easy to use and offers many functions.";
fDesc[6] = "orchestra under your total control. Evocative scores, exquisite arrangements, emotive accompaniments: HSO is the ideal, cost effective symphonic instrument for composition, production and pre-production in music, TV and film scoring and game sound.";
fDesc[7] = "next generation that combines usefulness and attractiveness into one package. Orchestra is a unique, fully graphical information manager program with a built in MP3 music player. Comes with a contact manager, word processor, reminder book and a notepad, all wrapped in an intuitive, easy to use interface. Includes a full-featured MP3 player, with playlists you can load and save, and can be used while you do other things in Orchestra.";
fDesc[8] = "orchestra or musical instrument.Small piece of music beat: You can use any standard instrument/drum from midi bank.";
fDesc[15] = "know about Csound? It's a powerful sound programming language based on C. If you're looking for one-click Techno' go check out rebirth, go o...";
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 = '...';
}
}