var fDesc=new Array();
fDesc[1] = "use. Whenever a more recent version of any programme becomes available, Software Informer notifies you and offers a link for downloading the update. It also allows you to keep track of comments and questions on corresponding software.";
fDesc[2] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[3] = ", for Mac OS and for Windows. The application allows us to download updates for the following programs: Quicktime Player, iTunes, Safari for Windows, or Quicktime Player + iTunes together.";
fDesc[4] = ", multilingual, and completely customizable. This utility gives us the opportunity to delete all the useless and obsolete data that we may be keeping in our system.";
fDesc[5] = "technologies like HTML, Ajax or Flash. Developers can take advantage of their knowledge in website creation to develop multimedia applications. In other words, from a web application they can create a general application with the contents and utilities of a web application.";
fDesc[6] = "of use, it comes packaged with Nokia phones. This version comes with many features like backup, synchronizing, etc .. and new features like the 'Video Manager' , 'Image Store' etc.";
fDesc[7] = "want to install any application from Google Pack and guides you to the whole installation process. With this program you can also monitor the status of your installation, run the software that has been installed on your computer and uninstall the programs.";
fDesc[8] = "written in the Java programming language. Once installed you won´t notice it. JRE is free to download, install and deploy, and all the related documentation can be found at http://www.sun.com.";
fDesc[9] = "everything Nero. The Nero Burning suite comes with many applications that range from CD/DVD burners, CD/DVD copying, drive speed analysis, image burning, and so one.";
fDesc[10] = "for instance, games, chat applications in webpages, image visualization, among others, that were written with the Java scripting language.";
fDesc[11] = "chatting, watching trailers, etc. Java Runtime Environment has a Java virtual machine and all the necessary stuff to run these applications.";
fDesc[12] = "standards), Popular (used by many tools), Tested and Reliable (it has been available for years), easy to use for the final user (windows installer), Multi-platform (Windows NT/2000/XP/2003), commercial support in the website of CACE Technologies.";
fDesc[13] = "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[14] = "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[15] = "applications and for many targets. From console applications to dynamic web pages, Visual Studio has all the tools a developer needs.";
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 = '...';
}
}