var fDesc=new Array();
fDesc[3] = "necessary tools and library to architects, designers, builders to design, document and construct their modeling projects. It features bi-directional association, material takeoff, parametric components, design options and visualization, etc.";
fDesc[4] = "Personal Instruction * Practice Area * Custom Lesson Designer * Typing Games * Progress Tracking & Reporting * Special Language Options This application is available in three versions: Mac & Win; Mac only and Win only.";
fDesc[5] = "visually appealing resume in a few minutes. The user friendly interface of the software is very helpful in building your own custom resume quickly and effortlessly.";
fDesc[6] = "Word file, HTML, format Texte ou HRXML file.";
fDesc[8] = "a complete and attractive curriculum vitae just by choosing the template you want to use, and entering all the information in a quick and easy way.";
fDesc[10] = "is intended for individuals, employers, Internet recruiters and others. It is a very useful and handy program. The CV created with DCV Editor will contain all vital information about the candidate, and your CV won’t be lost among the others, as usually occurs with paper CVs.";
fDesc[11] = ", educational, fun activities to keep a child entertained all year, providing support in every aspect of the National Curriculum. Buy it for an amazing and affordable price.";
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 = '...';
}
}