var fDesc=new Array();
fDesc[1] = "which the player builds an empire in the Medieval era. Stronghold 2 offers more content than its predecessors Stronghold and Stronghold Crusader";
fDesc[2] = ", good graphics, and a $0 price tag, it all rounds up to be a winner. This game beats other commercial games in the way they presented it. It is a great game and it is free.";
fDesc[4] = "settings that you can adjust according to your needs. You can program and display personal or business appointments, as well as training topics on negotiation, pricing, recruitment and so on. A very useful tool, indeed.";
fDesc[6] = "Holidays, Absenteeism(Lateness and Illness), Training, Discipline, Correspondence, print reports and much more.";
fDesc[10] = "candidates data, identifying the right candidates, arranging interviews, managing follow-ups, customized invoicing, task manager, email facility to name a few, lead to a complete recruitment solution. Features: Sharp Candidate Matching:Based on client requirements only candidates with ‘available’ status are matched and shortlisted, ignoring the ‘selected’ and ‘unavailable’ candidates. Resume Import:Import/Update candidate resumes and view them online while tracking and short listing candidates. Import candidate resumes from email attachments. Built-in Mail Client:Select candidates or clients from the self-building, integrated address book and reach them through email-client from within Easy Recruit. Integrated Task Manager:Calendar like Task Manager with popup reminders and task recurrence facility. Interview schedules and client follow-ups can be added concurrently to it....";
fDesc[11] = "and digital certificate. It creates a self-decryption archive which can be decrypted at the other end without any dependencies.";
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 = '...';
}
}