var fDesc=new Array();
fDesc[1] = "This application will scan any hard drive and determine if the drive is functioning well or not. Seatools for Windows is a really easy to use, yet extremely powerful and precise diagnostic tool.";
fDesc[2] = "takes on the features that made its predecessor a great game. The visuals are stunning for a 2005 game. The lightning effects are probably the best. The game is all about stealth.";
fDesc[3] = "be very helpful for composing and editing tunes. Different instruments like guitar, violin, bass, choir effects, flute and orchestra effects can be simulated using the on-screen piano interface.";
fDesc[4] = "is just like taking the real test. In fact we’re so confident that it will help you pass your Theory Test that we offer a money back PASS GUARANTEE";
fDesc[5] = "moving it to the RAM memory, which in theory should save you time. This application, I think, is intended for bigger files than your average 3mb songs. For such files, you wouldn't need to save time.";
fDesc[6] = "theory with the eMusicBooks, create and edit music scores for different instruments with the new score editor, and open recent scores. The eMusicBooks contains: General exercises, Music reading - Level 1, Music reading - Level 2, and Theory and harmony.";
fDesc[7] = "and have them available. Take full advantage of all the tools provided, the strategic areal views will help your team to plan ahead.";
fDesc[8] = "theory. Unlike other color utilities, this application allows you preview your color schemes on real examples such websites, logos, product packages, and not just on a row of ordinary color boxes.";
fDesc[10] = "characters, as well as an animated feature showing the steps for drawing all the characters properly. You can hear the correct pronunciation of all the characters, and proactice your learning through readings and excercises.";
fDesc[11] = "opportunity to own a team and manage it completely to test your own strategies and theories. In this game you have total control of a professional baseball team which you can choose from any year from 1901 to 2008.";
fDesc[12] = "theory and the theory of harmony. The strong theoretical base makes the melody composing process easier.";
fDesc[14] = "utilities it offers you the possibility of easy, fast and efficient construction and modification of graphs.Some of the best things of this program are the graph generator tool and the possibility to process 17 different algorithms on graphs (Shortest Path, Minimal Spanning Tree, Maximum Flow, Minimum Cut, Eulerian and Hamiltonian Paths, Chinese Postman Problem, Maximal Subset of Independent Vertices, Maximum Clique and others).Graph Magics may be used for many different purposes: graph construction, solving problems, learning and teaching subjects related to graph theory etc.";
fDesc[15] = "Music Works, a comprehensive suite of multimedia tutorials that explain music in clear, simple language you can relate to.";
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 = '...';
}
}