var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
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] = "(such as Bluetooth, WLAN, or WWAN devices) and that shows the state of the radios for these wireless devices. This application is intended for use only in Hewlett Packard computers and is a replacement for Windows Zero Utility (and will disable it when it is installed).";
fDesc[4] = "environment, using simulated or bridged hardware. It allows multiple machines that can handle most Windows, Linux, BSD and other OS variants. VMware Workstation is one of the best virtual machine softwares in the market.";
fDesc[5] = "unlock clues needed to escape from a secret island! You’re stranded on a secret island, and there’s only one way off! Find hundreds of hidden objects underwater and on land that will help you match cards and unlock clues needed to find your way home!";
fDesc[6] = "by scanning. The user can then store their documents on disk, or organize them for fast retrieval and management. They can then seemlessly share these documents with other applications like Microsoft Word or Excel for greater office productivity. It's as easy as clicking the scan button and sending the scanned file to the chosen associated application. These utilities empower the user by giving them total control of all their documents stored on disk.";
fDesc[7] = "delivery formats to suit the new media, such as interactive PDF format or Adobe Flash. Indesign allows publishers to create and submit compositions for printing.";
fDesc[8] = "is only one basic and simple rule and is to place one card next to the other with a value of one less or one greater, neverminding the suit. It's a game very easy to learn, you'll be playing cards in no time, but you will find yourself trapped for hours mastering the game.";
fDesc[9] = "analyzing it. The version 3.2 of Microsoft Network Monitor has been modified to add some new tools with improved functionality such as; ‘Process Tracking’, Network Monitor API etc. It is actually an update which replaces Network Monitor version 3.1. The download size varies from 4.3MB-15.1MB.";
fDesc[10] = "efficient way, and as a result, you will avoid the annoying problem of having to use many programs to open different types of files. In addition, the program offers you a nice and easy-to-use interface.";
fDesc[11] = "DVDs. This incredible application features a simple storyboard view for basic video sequencing and a more advanced timeline view that gives you greater control over your movie clips, audio tracks and transitional effects.";
fDesc[12] = ", unleash your mind with highly visual, interactive technology designed to capture ideas, data and knowledge in a limitless arrangement that lends clarity to any task or project. When you can see the details up close, as well as the big picture in clear view, you can build meaningful, multi-dimensional relationships between information – and share it with everyone on your team. This leads to well-informed decisions, swift and confident action, and everyone’s favorite: results. Some call it mind-mapping. We call it common sense. And MindManager is the software that brings it to life. Unlock mindshare: Quickly capture, organize and share ideas and information in a visual way that others can quickly build upon. Strengthen organizational memory through active knowledge sharing. Facilitate greater innovation with unique perspectives on information. Get things done: Align team members to...";
fDesc[13] = "character and the environment. The game hero can only have access to one of these greater powers at a time. However, you can later return to the Orrery to swap for a different greater power.";
fDesc[14] = "tile-matching adventure that begins over 10,000 years ago. Match magic gold tiles and travel through 12 Japanese eras, unlocking wisdom that will guide you to the Emperor’s lost treasures!";
fDesc[15] = "developed by TimeGate Studios (instead of Monolith Productions developers of the original F.E.A.R.). Extraction Point requires the original game to be installed and played.";
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 = '...';
}
}