var fDesc=new Array();
fDesc[1] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
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] = "bar the words or phrases that you’re looking for; also allows to select the engine search. Another feature improved is the Opera Mail. It supports the currently web standards, like CSS 2.1, XHTML 1.1, HTML 4.01, WML 2.0, ECMAScript, etc.";
fDesc[4] = "totally intuitive interface similar to Windows Explorer (with check boxes next to files and folders) that will allow you to select the files and folders you want to back up, the destination and filename, and any optional settings.";
fDesc[5] = "navigate without seeing or receive unwanted items from a website. You can protect your passwords by using filters that the program have, is very useful to protect your personal information which is essential in the network.";
fDesc[6] = "still in development demonstrating the capacity and the desire of the user to create the perfect browser. There are many packages available covering practically every Windows, Mac and Linux Operating systems.";
fDesc[7] = "generated 3D world environments created using Skyline's SkylineGlobe products. With Terra Explorer installed, you can access photo-realistic, aerial image based terrains over the Internet, an intranet, or a DVD/CD-ROM.";
fDesc[8] = "can remotely access the files stored in our home computer from Internet. Installing a client, and using a web browser, we can navigate through our files, listen to our music, and watching our photo or video collection, just as if we were actually using our computer.";
fDesc[9] = "faster and save their precious time. It is a fully loaded tool like a Swiss knife. It uses a well known two window technology for a second level of exclusive features. So, simple tasks like copy, move, delete, update etc. are very easy with this amazing file management tool ...";
fDesc[10] = "Manager, Download Manager, and more. You can search direct by drag text in browser. The other way, you also can add special search button to search bar.";
fDesc[11] = "popular file types such as DivX, MPEG, AVI, WMV, ASF, MP3, JPEG, and GIF.";
fDesc[12] = "a PDF document without the need of any external applications. Considering the other tools on the market which have limited editing functionality, this tool certainly has an edge over them.";
fDesc[13] = "the computer effectively and perform many complex tasks. With the help of this application, the user can navigate by accessing the partition table directly, or through FAT or root directory, boot record or even jumping to a certain sector.";
fDesc[14] = "impressive view on the selected boat and sailing area. The comprehensive instrument panel contains a clock, compass log, depth sounder, windspeed and direction indicator, engine control panel and a GPS receiver.";
fDesc[15] = "and visualizing the images displayed. It makes the navigation thru the book easily allowing skipping sections of the content.";
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 = '...';
}
}