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] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
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] = "Internet using the \"ARP\" protocol exploits. The program can protect your computer from such attacks. The program has a built-in network scanner and supports choosing the network adapter that you want to utilize.";
fDesc[5] = "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[6] = ", store date in one place. Information is available on your computer in many forms, from business cards to Microsoft Office files, SQL Server data, etc. It helps bring it all together with a few clicks.";
fDesc[7] = "them. There is always access to this information any time anywhere, even if your going on a business trip, you can take these web pages with you on your laptop and view them with no Internet connection required.";
fDesc[8] = "computers connected to the Internet. It allows any two users (or more) to establish a connection even when they don't know each other's IP address. Thanks to its DCHP capabilities, chatting with people on the same network becomes very easy.";
fDesc[9] = "messages, lines (channels), message board, filters, online alerts, different modes, automatic conversation smile symbols to the pictures, highlight and pro...";
fDesc[10] = "Intranet.The FormTool Quick Start Wizard is integrated with FormMail, allowing you to create a working form easily. The Microsoft Visual B...";
fDesc[11] = "include chat, load/save game,chess-clock, move logging, coordinate system.";
fDesc[12] = "intranet applications with web interfaces. This incredible application includes a set of features to test web sites with dynamic content and secure HTTPS pages, and also provides informative test results through descriptive graphs and reports.";
fDesc[13] = "self-working and can easily be uploaded on an Internet web site, as well as on Intranet network or an 'off-line' such as a CD-ROM.InVision can 'link...";
fDesc[14] = "It comes with colourful text chat, file transfer, drawing board, network tools and encryption security features.";
fDesc[15] = "capability to run as a service instead of as a desktop application. It is supported on almost all ODBC databases like MySQL, MSSQL, Microsoft Access and Navision. It can access all information from these databases and show the data on the web.";
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 = '...';
}
}