var fDesc=new Array();
fDesc[1] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[2] = "few users try to learn these important topics. But nowadays, it’s easier to get that information thanks to Berlac Advisor. This small utility will make a deep analysis of your PC, detecting all your hardware elements connected and all your installed applications.";
fDesc[3] = "digital cameras, but the application can be used by anyone. Version 7.1 adds several new features. The first one is the ability to tag pictures. By tagging a picture, you give it a keyword, which you can later use to find pictures.";
fDesc[4] = "It supports all kinds of editing techniques with a specially framed tool bar that is capable to perform functions like image morphing, image editing, retouching the earlier pictures by giving it an entirely new look.";
fDesc[5] = "last minute headlines from the user specified news websites, showing them on the PC desktop with a very attractive and customizable interface. KlipFolio is runs in the background, with a minimum consumption of resources.";
fDesc[6] = "portrait. Pivot Software supports this rotating orientations: portrait 90, presentation 180, portrait 270, and landscape, as well as multiple monitors in Windows® 2000, XP, and XP x64 edition.";
fDesc[7] = "options. It can graphically present the weather data and store a log file which can be used to see averages and extremes for any month or day. A very important feature of the Weather display is that it has a large set of tools to work with the Internet.";
fDesc[8] = "really fast trying to send you a subliminal message. Initially the program was developed by order of one of the well-known fast food companies and the first release was able to work in background mode only.";
fDesc[10] = "credits). It automatically displays songs and presentations in the format you have set and changing this is fast and easy.";
fDesc[11] = "run a variety of channels such as Digital Signage, Retail Television, Out of Home Networks and Corporate Channels.";
fDesc[12] = "letting you see just how much of it is actually utilized at any given time. Other useful features are: software router, etc.";
fDesc[13] = "and display software that allows you to create photo albums for all of your digital images in a snap.";
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 = '...';
}
}