var fDesc=new Array();
fDesc[1] = "more features like effects and custom filters that give website developers more functionality in showing better graphics. It is a must on every PC, as many sites rely on this plug-in for showing videos";
fDesc[2] = "physics algorithms which require amounts of simultaneous mathematical and logical calculations to make a simple game display. This is where NVIDIA PhysX Technology comes in.";
fDesc[3] = "possibilities, which include: Servers, web based, and Kad. It is a completely free of charge application also free of adware, spyware and any other kind of intrusive programs.";
fDesc[4] = "Tasks are reduced from multiple steps with the new task pane. The new version of Outlook condenses all your personal and professional e-mail into one central location, even your Web-based e-mail accounts like Hotmail.";
fDesc[5] = "picture quality even at high compression ratios. Xvid is similar to DivX, since it is an open source project, distributed under the terms of the GNU General Public License (GPL). That means that it´s free to use, and everyone can contribute to its development.";
fDesc[6] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[7] = "possible to handle all the boards in a single canvas and work individually or jointly. This way you can create several designs of various sizes neatly within a single file.";
fDesc[8] = "system as if they were physically there. UltraVNC is divided into 2 applications: UltraVNC Server and UltraVNC Viewer. The former is the program that has to be installed in the computer to be controlled, and, the latter, is the client program.";
fDesc[9] = "can also use the Upgrade Advisor to determine if your Windows Vista-based PC is ready for an upgrade to a more powerful edition of Windows Vista.";
fDesc[10] = "need to tune NVIDIA GPU based display adapters. Advanced tuning features such as driver-level Direct3D / OpenGL and system tuning, flexible profiling system allowing to make custom settings on per-application basis etc. are included.";
fDesc[11] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[12] = "text editors etc and works faster than server side checking. Moreover it provides useful spelling suggestions allowing you to add and remove personal word.";
fDesc[13] = "even shortcut keys!!), offering as a bonus an interesting set of 'plugins' to perform specific tasks (like the 'Case Conversion'.";
fDesc[14] = "XML-based protocol that is designed to exchange structured and typed information on the Web. The purpose is to start up rich and automated Web services based on a shared and open Web infrastructure.";
fDesc[15] = "horror masterpiece game can be also classified as a co-operative, survival horror action game, it is based on the same Source graphics engine of Counter-Strike and it is to be run on Windows operative system based PCs.";
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 = '...';
}
}