var fDesc=new Array();
fDesc[1] = "and connect the left side of the playfield to the right side in order to connect flames to rockets and make them explode and disappear from the board, thus adding new ones.";
fDesc[2] = ", FLASH and PIC's using user friendly tools and multiple programmer types. Ponyprog supports AVR, SPI eeprom, AVR micro, 12C bus 8bit eeprom, PIC 16 micro, PIC 12 micro, AT89S micro and SDE2506 eeprom family chips.";
fDesc[3] = "is a convenient program with a beautiful and intuitive interface that eases coping, transferring, searching of audio files and other things.";
fDesc[4] = "lands Comet: Explodes on contact into six highly bouncy fragments Sunburn: Explodes near tank, fires laser beams that bounce off terrain Riptide: Sends out a horizontal wave of reflective missiles";
fDesc[5] = "software helps in the development of percussive samples. Many features have been used like drumhead selection, room and microphone configurations to fuse the qualities of a high-end drum recording and the cutting edge of the radical beats of today's top R&B, hip hop, and pop producers.";
fDesc[6] = "bombs, missiles, and other powerful bonuses. Classic, Survival, and Puzzle modes provide hours of insanely addictive play.";
fDesc[7] = "ground and fills it with lava. Streamers - Tons of streaming bullets that bounce everywhere. Mass Driver - Summons an asteroid from orbit... head for cover. Molten Plastic - Covers the terrain with burning bouncy dirt.";
fDesc[8] = "in the same Excel file or two different Excel files. Excel 2000 or higher required.";
fDesc[10] = "replaced by more. Bounce the required number of balls off the screen and move to the next level. Need help? Hit the panic button for a free move. Keep an eye on the dynamite fuse, because when it runs out of time, so do you!";
fDesc[11] = "higher required.";
fDesc[12] = "different Access files. Access 2000 or higher required.";
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 = '...';
}
}