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] = "both with voice, calling, video conference, gaming, and mailing functions. The program has not changed much from the previous versions in its core, but adds a great array of new features that the user can surely benefit from.";
fDesc[3] = "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[4] = "websites and many other Internet threats. The program works quietly in the background detecting and eliminating viruses, spyware and Internet worms.";
fDesc[5] = ", provides more up-to-date content and more engaging multimedia than ever before. Whether you’re searching online or offline, it’s the trusted way for everyone in the family to easily find relevant and reliable information on just about any subject.";
fDesc[6] = "websites and many other Internet threats. The program works quietly in the background detecting and eliminating viruses, spyware and Internet worms. It also protects your computer against hackers and blocks identity theft by phishing websites.";
fDesc[7] = "11 new security updates. One of these updates are related to vulnerability in Excel named MS08-043, (KB 954066). Please keep in mind that this security update replaces the following security: 946974 MS08-014: Description of the security update for Excel 2007: March 11, 2008";
fDesc[8] = "developers to rapidly create connected applications that deliver the highest quality, rich user experiences. With Visual Studio 2008, organizations will find it easier than ever before to capture and analyze information to help them make effective business decisions.";
fDesc[9] = "them, easy-to-use application Autodesk Design Review can be used as it is both money and time saver. With every Autodesk design product, this easy-to-use tool is attached, and time is also saved in the approval and mark up processes.";
fDesc[11] = ", and now it is easier to control the ball more accurately in the desired direction. With new menus resembling Windows Vista, more goal celebrations, more technical gestures and, of course, mandatory improved graphics, Pro Evolution Soccer offers another choice to Soccer fans";
fDesc[12] = "format playback. It doesn't really want to take the place of media player giants like Windows Media Player or VLC.";
fDesc[13] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles. This game has a few new modes with comparison to FIFA 08. The first one that you will notice is \"represent your country.\"";
fDesc[14] = "needs. This version is completely free, but big companies may need to buy the more full-featured Office Accounting 2008 Professional which includes more complex tools, such as multi currency support, which is an essential feature for businesses selling to international customers.";
fDesc[15] = "side, so your hard disk won´t have to track them down. This is accomplished reading every part of a file, writing them in a temporary place, and the rewriting them in its permanent location.";
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 = '...';
}
}