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] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[3] = "is dynamic unlike other download managers. Other features include resume broken downloads due to broken network connections, error recover and site grabber for web-sites. Apart from the regular files that can be downloaded, IDM also supports embedded video files";
fDesc[4] = "Google Talk that really kind of slowed the progress of the messenger down. Now, thanks to it, you can video chat and voice chat with all your contacts. They still have to download the plugin.";
fDesc[5] = "user interface is built around a simple 4-step workflow comprising: Capture mode (to capture feed from different sources); Edit mode (Import Media, Trim, Fix/Enhance with Magic Tools, Add Effects) etc.";
fDesc[6] = "and 8 cm discs. In only 4 simple steps you will be able to design and print the complete artwork you need for both the disc and its jewel case. You can either print a CD/DVD label to stick on the disc or print directly onto its surface, using Labelflash and LightScribe technology.";
fDesc[7] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[8] = "possible to enter My PC, My Net places, My documents, My music, My images, the Control Panel, the Recycle WasteBasket, as well as the configuration itself and the developer web site (Punk SOftware).";
fDesc[9] = "configurable popup calendar that opens when the systray clock is clicked. No more double clicking on the clock just to view the calendar in the Date and Time Properties dialog box.";
fDesc[10] = "seventh delivery of the Grand Theft Auto saga. The game contains new and numerous improvements over previous releases, but with the same spirit that characterizes this saga of controversial video games.";
fDesc[11] = "impression and seems to be well-thought, especially in terms of design. I would recommend this application to users, searching for a simple and easy-to use DVD movie player.";
fDesc[12] = "database that fits in a 2.5MB JAR file. Java DB 10.5.3.0 adds bug fixes plus message localizations to the features introduced in Java DB 10.5.1.";
fDesc[13] = "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[14] = ", create 2D presentations with LayOut, and more. It's easier to learn than other 3D modeling programs, which is why so many people are already using it.";
fDesc[15] = "and scanners. Ulead Photo Explorer is more than a simple image viewer. It integrates functions of acquisition, edition, cataloging, organizing, adjusting and sharing digital images and video clips. This powerful and easy-to-use program has clear and simple toolbars.";
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 = '...';
}
}