var fDesc=new Array();
fDesc[1] = "and device recognize it awesome, providing all the information without mistakes, complete analyzes and information in one moment, multiple options to save the information and more.";
fDesc[2] = "lessons. After months of studying Ellie decided to start her own business, and since she didn't have an office to work placed the equipment in the yard of her house. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[3] = "shape to win an upcoming tug-of-war competition. You´ll have to serve the customers of your fitness center, and will have to conquer different goals in order to get to the next level.";
fDesc[4] = "critical performance issues in your web site or web server that may prevent optimal experience for your site's visitors.This incredible software allows you to test your web server performance under normal and excessive loads.";
fDesc[5] = ", maintaining and modifying databses . It also supports importing from SQL scripts and forward/backward engineering of the database structure.";
fDesc[6] = "free from stress and physical disorders. Finding a good gym and a good instructor is not the only way to stay fit if we have our own workout equipments and a very reliable pocket instructor in applications such as this great application.";
fDesc[7] = "my site handle? Will my site crash under load? What are the response times? Easy to use, no scripting but can design advanced scenarios";
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 = '...';
}
}