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] = "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[3] = ", 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[4] = "and geographical capabilities using built-in user-friendly features for easy operation and exploration. The program is educational for users of all ages and for families with school-age children.";
fDesc[5] = "provides you with latest images of our Earth. Also, it gives you a virtual Moon, Mars, Venus, Jupiter along with the its moons like Ganymede, Europa and Callisto. Another feature is the imagery of the sky and the stars, along with some information about them.";
fDesc[6] = "dimensions. Celestia runs on Windows, Linux, and Mac OS X.";
fDesc[7] = "application is to combine the spontaneity of sketching by the hand with the power of digital tools, and achieve it with awesome and powerful tools and an intelligent guided process that makes everything really easy.";
fDesc[8] = "map, showing the daylight and night areas. The wallpapers generated are very good and the program requires very few clicks to see the change.";
fDesc[9] = "the popular, Google maps, Yahoo maps or Microsoft maps. The downloaded images can only be viewed by the \"Maps Viewer\", included with the program itself. There is also an option to combine the images into a big BMP image by \"Maps Combiner\".";
fDesc[11] = "files for Google Earth, Shapefiles (SHP), AutoCAD DXF files, or Flickr. Import from tracklogs, waypoints, GPX or place names.";
fDesc[12] = "interest, show or hiding descriptions balloons, styled pop-up balloons and change the format of the description text. Also you can define a camera that is associated with any element. KML Editor runs on Windows 2000, Windows XP or Vista platforms.";
fDesc[13] = "follow, It allows you to experiment earth from many angles. You can transfer maps from and to Google Earth, display GPS position, show-and-hide maps, and more .";
fDesc[14] = "This KML conversion program comes with a suite of tools enabling you to work with raster images, vector map data, and GPS Tracks, Waypoints and Routes.";
fDesc[15] = "Google Earth and zoom into the geographical area you wish to work on, and then open your EarthPaint program which will provide you with the choice of synchronizing its view with the current one displayed by Google Earth, or setting a new one.";
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 = '...';
}
}