var fDesc=new Array();
fDesc[1] = "developing and using PHP projects on their local computer. WAMP stands for: Windows - Apache - MySQL- PHP5. WAMP5 automatically configures all these components to work together, wherever you install them on your local drive.";
fDesc[3] = "here for a listing of the differences between the applications. It is a complete solution designed to provide you with a robust";
fDesc[6] = "has an opportunity to choose a suitable field range, game rules and also to undo/redo the last action.";
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 = '...';
}
}