var fDesc=new Array();
fDesc[1] = "non-commercial use only.";
fDesc[2] = "restrictions about how many clients can connect to a server. It is free of charge for non-commercial purposes. The Server browser allows you to search for public servers. Little suggestion to make: private text message get lost in the other diagnostic messages.";
fDesc[3] = "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[4] = ", 2003, 2002, or 2000. You may copy text or graphic into another program, but you will only be able to open the document for editing if you have Microsoft Word installed.";
fDesc[5] = "Diagnostics module - Benchmarks - Tweaking features - Web links - Favorite pages - Built-in hardware database - Full Windows XP compatibility - Full Windows Server 2003 compatibility - Fully localized user interface.";
fDesc[6] = "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[7] = "that make it the preferred database for web developers. Although It has some known bugs. Critical bugs sometimes do not get fixed for long periods of time. Also it shows poor performance when used for Data Warehousing.";
fDesc[8] = "Microsoft Excel Viewer you’ll have the possibility to access to all the files created with Excel 2007, 2003, 2002, 2000 and 97. This program is a viewer, so it’ll allow you to see the files and print them, but it won’t allow you to edit the files created by Excel.";
fDesc[9] = "developing web pages & applications. It contains Apache Web Server, MySQL Database Management System & PHP Programming Language. So now you can develop your applications locally on you home PC and once you have developed you applications you can upload it to your webhost.";
fDesc[10] = "application. A good aspect of this software is its interoperability and wide range of platform supported such as MAC OS X, all windows platforms, QNX Neutrino 6.2 meaning almost every other operating system.";
fDesc[11] = ", there are many other uses for it, screencasting being the most notable of them. Debut allows you to record your screen as if you were recording a webcam feed.";
fDesc[12] = "advantage of this shell integration is that not only web or software developers can use it but all the people can use it, like translators, doc writers,...";
fDesc[13] = "email large attachments, IM a folder, or publish your downloadable videos to the Web? Maybe you'd just like to watch full-screen HD Internet TV. Meet Pando.";
fDesc[14] = "and developers worldwide. Ubuntu comes with a series of already installed applications that are categorized by functions like: Accessories, Games, Graphics Internet, Office and Sound & Video You can run Ubuntu as a desktop operating system or configure it as a powerful and secure server.";
fDesc[15] = "the most of your Internet connection’s speed by adjusting your Internet parameters to the most convenient settings. You can either let the program make an automatic adjustment or, if you are an experienced user, you can make manual settings to optimize your Internet connection.";
fDesc[16] = "GetRight offers great features accelerating your downloads, synchronizing entire web sites, and handling all your downloading needs in a fast, safe and easy manner.";
fDesc[17] = "features of a simple text editor as well as many more useful features which are helpful to web developers, web designers and Programmers as well.";
fDesc[18] = "Microsoft Office installed on the user PC and accessed through internet. As expected, service is adquired through licensing Microsoft software and web servers or included on Office Communication Server";
fDesc[19] = "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[20] = "and options provided by any HTTP server with great performance and absolute control of it. Its administration is very easy however it doesn’t have any GUI; by using commands and scripts you can set it up quickly in almost any platform.";
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 = '...';
}
}