var fDesc=new Array();
fDesc[1] = "gaining features. The latest version is now able to download subtitles automatically. Still, there are many things BSPlayer has to do to become the dominant player of multimedia files.";
fDesc[2] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[3] = "includes 230 ready-to-use effects, drawing tools, timeline and sophisticated scripting language. You can import vector art, images animation and sounds";
fDesc[4] = "program is very complete but it is easy to use. You can be an expert on software but you will find this program very complete and useful. If you are a beginner, the program's interface will seem really easy and you will have no problems by using it.";
fDesc[5] = "shape. The pieces will enter the screen from the right, and you will have to pick them using your mouse´s left button, rotate them if needed with the right button, and drop them in place with the left button, again.";
fDesc[6] = "fan, but a maniac!! Shape Shifter begins with two different modes of play: Beat the Clock and Speedster. Beat the clock is the classic mode that will hook you up for hours and hours, always challenging you";
fDesc[7] = "is only one basic and simple rule and is to place one card next to the other with a value of one less or one greater, neverminding the suit. It's a game very easy to learn, you'll be playing cards in no time, but you will find yourself trapped for hours mastering the game.";
fDesc[8] = "programs. It also works as a security tool to protect your data from unwanted hands and provides privacy for your personal computer work. The built-in Internet history eraser, cookie cleaner, add-ons manager and temporary Internet files cleaner keep your web browser running smoother.";
fDesc[9] = "easy-to-use product. By using this features rich software you not only can create professional looking logos but you can also use it to create headers for a website page, advertisements and other graphics in fraction of time.";
fDesc[10] = "card on the field next to another card with a value one less or one greater, regardless the suit.";
fDesc[11] = "own words and quickly upload interactive puzzles to the web for people to solve.";
fDesc[12] = "according to a level’s virtual environment, enabling gamers to be carried into various fantastic adventure stories taking place in beautiful virtual worlds, controlling Gumboy through adventurous levels.";
fDesc[13] = "beautiful shapes with the spaces, but things start to hot up when you play against the clock. Can you beat the clock? Can you match the shapes in the time limit?";
fDesc[14] = "filter and customizable shape. Included in the software are 3 filters. There is a low shelf filter, a high shelf filter and a boost/cut peak filter. Also included is its wide range gain (+/- 40dB per Band) and bandwith (.01 to 5 Octave) which makes it very versatile to create any filter shape.";
fDesc[15] = "of the shapes that allows you to create unique buttons that you can export as GIF, PNG, JPG and BMP files. The Shape Editor helps you to create your own and originals shapes. You can export your new buttons to different formats.";
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 = '...';
}
}