var fDesc=new Array();
fDesc[1] = "published by Atari. Inspired by the writings of Andrzej Sapkow, the Polish writer, The Witcher is a title in which a warrior will face some monstrous beings known as the \"werewolves\".";
fDesc[2] = ", Infopath and OneNote. The program has a very modern and professional user interface and an easy-to-use wizard. It offers the ability to import/export all your applications' settings very easily as well.";
fDesc[3] = "favorite shortcut icons. You can edit bitmap images with resolution up to 256x256 pixels. It includes palettes, color mixer, effects of image browser. It includes a collection of icons and images too.";
fDesc[15] = "efficient project organisation tool based on the concept of an in-depth cross-referencing system. Veox.Projekt starts where the most other Project management Software stop - with the structuring, organising and recording of your projects and business related data e.g. Main Project details, Contacts/Addresses, Employees, Document Management, Tasks, Project Time Tracking, Additional Notes, and much more - easily accessible and fast to find by easy usability. Key features: Project/Client related business data Projects and Tasks Planning Client Contacts & Addresses Recording Time Tracking Human Resources Management Workflow & Efficiency Management In-depth Cross-Referencing System Including free basic e-mail support and free updates for the same major version";
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 = '...';
}
}