var fDesc=new Array();
fDesc[1] = "pretty fast way. Besides, it uses a minimal amount of resources of your system in comparison to other programs of this type.";
fDesc[2] = "enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2005 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.";
fDesc[3] = "advantages of the new enhanced user interface. In addition, virtually anyone, anywhere can intervene in the review process with Autodesk Design Review, the free integrated solution available to consult, write and revise designs electronically.";
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] = ", fast and quite simple to use software, what makes of it the perfect application for everyone. It's freeware, but the license is free only but non-commercial use.";
fDesc[6] = "WSE is a feature set, which developers can use for secured interaction between Web services based on different WS- specifications, such as WS-Security, WS-Addressing and WS-Policy.";
fDesc[7] = "security to nodes which are susceptible to various virus attacks.Having the LiveUpdate makes it the best updated antivirus in defence of the various new viruses being invented every week.";
fDesc[8] = ", 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[9] = "interface. The free trial version allows the backup and restore features, but requires a license for the update feature.";
fDesc[10] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[11] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[12] = "technology generation of virus recognition. Ad-Aware SE Personal protects your system against malicious programs, identifies and removes spyware and makes a fast scanning.";
fDesc[13] = "overview that helps you keep track of your expenses. Put savings targets and then perform a monthly analysis of your finances to see how much you're really saving.";
fDesc[14] = "applications and for many targets. From console applications to dynamic web pages, Visual Studio has all the tools a developer needs.";
fDesc[16] = "Plus, it includes the latest tax law changes.";
fDesc[18] = "PC industry. The application utilizes sophisticated real time 3D gaming workloads for measuring the performance of PC with the help of suite of DirectX 9 tests such as 3D graphics tests, CPU tests, and 3D feature tests including the HDR/SM3.0 graphics tests, as well as SM2.0 graphics tests.";
fDesc[19] = "to non professionals developers, but is built with the same technology than the line of SQL Server 2005. This version is more complete that the Jet Version, or the MSDE version.";
fDesc[20] = "operator compatibility as part of the alliance between Microsoft and Nortel. As the previous version, it requires a centralized server called Office Commuication Server 2007 which unfortunately isnt compatible with the 2005 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 = '...';
}
}