var fDesc=new Array();
fDesc[1] = "houses which you rent and collect the money every month, and you also own some empty lots on which you can construct new houses. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[2] = "Pro is designed to quickly and easily draw good-quality, straightforward designs.";
fDesc[3] = "previous editions there is no much new to tell because the game is pretty much the same, only changes its location. For those who haven’t played the previous editions of this game, let’s say that this is a strategy game related to construction and real estate business.";
fDesc[4] = ", another race that attempts to exterminate the humankind. You will have to look for your enemies across the galaxy. Once you find them, you must challenge them to battle.";
fDesc[5] = "it. Screen Calipers will help you to adjust a web page layout, a picture that you want to fit in a frame, any project that you are working in, charts and blueprints for architects and anything else that comes to your mind.";
fDesc[6] = "engineers. These programs can be very expensive, as well as very difficult to learn, and very difficult to use. Easy Plan Pro is very easy to use and also is very easy to design and to draw.";
fDesc[7] = "this program users will be able to vectorize their images in a snap and use a great variety of raster tools, like drawing lines, boxes, circles, and different effects like soften, repair, erode, to name but a few.";
fDesc[8] = "Screen Protractor floats above any other application so you can measure any angle on your screen.";
fDesc[9] = "capability in any situation. Position, area and circumference can be calculated, with accuracy.";
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 = '...';
}
}