var fDesc=new Array();
fDesc[1] = ", the background will turn from lead to gold, and every rune will disappear, awarding you points. You can then place more runes over those empty spaces.";
fDesc[2] = "Windows... the downloadable version of ALCHEMY! Now you can play anytime you like, of";
fDesc[3] = "those days when everything was explained by magic. You will see the table where he used to write down his discoveries, and where he witnessed very strange phenomena.";
fDesc[4] = "alert the network administrator by cell phone or pager BEFORE problems get seriously out of hand.";
fDesc[5] = "into gold. As you progress through each level the characters and colors of the runes become more complex, making it increasingly more difficult to turn the entire playing field into gold.";
fDesc[6] = "CATALYST 7.0 is one of the most renown localization tools in the market, and offers what the developers call a “Total Visual Localization environment” that can localize software files, Websites, online help, manuals, database files, and many others file types.";
fDesc[7] = "configuration, generate software licenses reports, etc.";
fDesc[8] = "and performance and immediately alerts you if a server gets out of order.";
fDesc[9] = "ChordAlchemy is the new family member of Tonal Alchemy. ChordAlchemy is a great reference tool for both players of chord instruments and for learners. It represents, on the whole, an electronic chord dictionary including many convenient features.";
fDesc[11] = "Advanced features include batch format conversion; annotations, thumbnailing; screen capture, painting, slideshow and more!";
fDesc[13] = "white rules, this spam killer will filter out all your junk email!";
fDesc[14] = "patches, run diagnostic utilities, etc. without leaving their own workplace.";
fDesc[15] = "length and speed. It must not move beyond the playing area, must not cross itself and must avoid the brick walls that appear around the playing area.";
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 = '...';
}
}