var fDesc=new Array();
fDesc[1] = "ATI Catalyst Control Center can be used to fine-tune your graphic settings, enable or disable connected display devices, and change the orientation of your desktop, etc. Many features present you with a preview of your changes before they are applied.";
fDesc[2] = "user can copy one or more file links and the program checks them if they are available and, if so, downloads them, this feature can also work by introducing the page’s code complete";
fDesc[3] = "will probably notice when you open this application is the HUGE (it's not that big) banner at the bottom. I know this is a free application and all, but did they really need to blind me with flashing banners while I am trying to burn a couple songs?";
fDesc[4] = "file, it will download another 70851816 bytes using your Internet connection, upgrading the game to the latest available version. You must help a young couple to choose and decorate their first house.";
fDesc[5] = "This application's selection is limited to free streams that are widely available on the Internet. What this application does is gather a list of all those channels in a single location so that you can access them freely.";
fDesc[6] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[7] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[8] = "customized to our likes. The easy and fastest way to get TweakVI to work is to use the “Auto Optimize System” option, is not available in the free edition";
fDesc[9] = "showed into the Windows Taskbar. Just place your mouse over a button, and most of times (not always) you will get a thumbnail of the application. Cool!";
fDesc[10] = "parameters in order to create models that fit your needs. If you have a photo, you can import it to the program, and a few minutes later you will get your rendered 3D version.";
fDesc[11] = "photographer, but I can understand where the need for this application comes from. Many times, when I snap a shot, I think I just got a Pulitzer snapshot. But, then, I find an old couple on the background of my picture, or a fence, or something like that.";
fDesc[12] = "your hard disks. I want to introduce you a simple yet powerful application that will let you defrag your files and folders on all your disks in a quick way with just a couple of clicks.";
fDesc[13] = "found a couple that really work every time: Ipod Access and a couple of ones for Mac. This one does work, too. It also has got a nice design and is intuitive enough that a beginner user can start using it almost instantly.";
fDesc[14] = "very fast. The program has a main window (draw area), and 2 toolbars: 'Shape' and 'Surface'. You can play with them to get the desired effect. Then, save it as a bitmap or copy it to the clipboard.";
fDesc[15] = "to make all the preparations step by step, following simple instructions. The main feature of this program is that the interface is designed in such a way that you just can’t do something wrong.";
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 = '...';
}
}