var fDesc=new Array();
fDesc[1] = "document library located on a SharePoint Web site causing excess network traffic. Also fixes data loss when working on a notebook located on a server. OneNote can Crash when working for about 5 minutes working on a \"Read-Only\" notebook. After installing this update the computer must be restarted";
fDesc[2] = "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[3] = "browser, to read documents and emails offline. At the begining Gears only implemented Google Reader, but now Gmail is in progress and it is expected that in the near future it will be extended to other applications such as Google Docs or Google Calendar.";
fDesc[4] = "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[5] = "ease. It is easy to install and use. Mainly designed to create a test environment but powerful enough to handle the real thing.";
fDesc[6] = "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[7] = "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[8] = "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.";
fDesc[9] = "Tomcat is very helpful for a developer and it is compliant with almost all the security standard features required for the system administrators. It has very valuable features such as SSL support, authentication schemes, Apache integration among others.";
fDesc[10] = "introduced with a number of improvements, which includes a list of new features, bug fixes, a number of new parameters, functions, methods, extensions, classes, INI configuration Directives and also security enhancements.";
fDesc[11] = "server, a MySQL database, PHPMyAdmin as well as easy development tools for web sites and applications. We are not really running EasyPHP as such: we are really a starting up Apache and MySQL.";
fDesc[12] = "select a DNS name for your computer to be accessed to. For example, you can chose DNS.DynDNS.com, and every time someone types that address anywhere, they will be directed towards your IP address. However, you would have to manually update it every time your IP changes.";
fDesc[13] = "and all other basic features needed for uploading/downloading from a remote FTP server . The program's layout is very simple and easy to deal with .";
fDesc[14] = "critical performance issues in your web site or web server that may prevent optimal experience for your site's visitors.This incredible software allows you to test your web server performance under normal and excessive loads.";
fDesc[15] = "downloading, for maintaining Web sites or just for sharing files with customers or friends. The application comes with many options and settings for adjusting the users conveniences, as well as the administrator control on the server itself.";
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 = '...';
}
}