var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "downloaded maps of over 200 countries on your PC to a mobile device with Nokia Maps previously installed. You can use the Nokia Maps application on your device any place at any time.";
fDesc[4] = "It includes templates and tutorials to help you do your homework in Microsoft Office. Includes Microsoft Math for doing mathematical calculations including solving equations and plotting graphs, calculus, etc. Dictionary and Thesaurus helps learn foreign languages too.";
fDesc[5] = "is just an upgrade that can be downloaded freely from Garmin´s site, but it won´t be installed unless you have a previous version in your system. Nevertheless, I´ve found out that it can be installed if you previously installed the program \"Training Center For Windows\".";
fDesc[6] = "easy and friendly with many features included to develop all your ideas and projects clearly in order or simply to order a brainstorm session. Freemind works in almost every platform that runs Java.";
fDesc[7] = "changed between project versions, and then merging changes between versions. Features: Visual differencing and merging of text files Flexible editor with syntax highlighting Handles DOS, UNIX and MAC text file formats Unicode support Difference pane shows current difference in two vertical panes Location pane shows map of files compared Highlights differences inside lines File filters in directory diff Moved lines detection in file compare Shell Integration Rudimentary Visual SourceSafe and Rational ClearCase integration Archive file support using 7-zip Plugins Localizable interface via resource DLL HTML-based Manual";
fDesc[8] = "drawings such as flowcharts, network diagrams, presentations, building plans, fashion designs, workflows, program structures, UML, web design, electrical engineering, database diagrams, and more.";
fDesc[9] = "landmark in the map. There is a world map, where you can zoom in. All the road and rail routes of the United States is marked in it. There is a Euro version of AutoRoute too where you will get the whole of Europe. Anyway it is not available for Asia, Africa or other Ameriacan Places.";
fDesc[10] = "3D visual tours. The program requires detecting Wi-Fi signals in the area near the PC, but the PC can use any type of Internet connection. It runs on Windows 2000 and Windows XP.";
fDesc[11] = "Garmin, Lowrance, Magellan, Eagle, Brunton, Silva and MLR for the uploading or downloading the waypoints, routes and tracks and most brands of GPS receivers for real time tracking of GPS position.";
fDesc[12] = "wonderful screensaver will shows you a view of the planet Earth revolving around the Sun; and the brilliant 3D world map includes information about all the countries and the cities of the world.";
fDesc[13] = "Navigator only. The program is provided with scan function to search maps on the computer and DVD. Nokia Map Manager is an additional application and is used together with Nokia PC Suite 6.86 and later versions.";
fDesc[14] = "can be used in conjunction with various OpenTibia program tools. This version (1.1.6) contains many new features. There are a lot of new brushes and better organization of the RAW palettes.";
fDesc[15] = "processes) for brainstorming, capturing ideas, problem solving, rational analysis, and decision making. It comes with example templates for the user to quickly create a mind map diagram.";
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 = '...';
}
}