var fDesc=new Array();
fDesc[1] = "more from their player. Its forward backward button option, media library, online music search option, minimode are very useful additions. All this packed in a simple interface and makes it a great media player to work with.";
fDesc[2] = "Firefox 3. This changes were made to improve stability and web compatibility, provide user interface enhancements, and speed. Firefox 3 now includes support to resume downloads, and a better download manager. Its general appearance has been slightly improved, with some new icons.";
fDesc[3] = "secure and customize your mail. The program features many new enhancements to help you better manage your inbox, and keep your vital information organized.";
fDesc[4] = "for free.You can use the FLV Player standalone, without the support of flash authoring tools.";
fDesc[5] = "platform. This driver will dramatically improve the touchpad scroll bar area. It also contains feature enhancements or changes that will help keep your system software current and compatible with other system modules (firmware, BIOS, drivers and software).";
fDesc[6] = "III and its expansion pack, and it tells the player that the conflict between the factions is ideological, and not a merely good-versus-evil thing. Depending on your starting point, players will have to undertake different quests, face different monsters, and so on.";
fDesc[7] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[8] = "developers to rapidly create connected applications that deliver the highest quality, rich user experiences. With Visual Studio 2008, organizations will find it easier than ever before to capture and analyze information to help them make effective business decisions.";
fDesc[9] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[10] = "with a fresh new look. Change the look and feel of your desktop icons with this amazing tool. This tool comprises a package of icons and is able to change or replace hundreds of icons on your Windows.";
fDesc[11] = "mode, i.e the same history and strategy in real time. The big difference that shows the wisdom of the people of Microsoft and Ensemble study is that it adds 5 new civilizations and substantially improves the artificial intelligence.";
fDesc[12] = "and wallpapers to get rid of the Windows traditional look. Theme Manager is complete software made for all your OS look related matters.";
fDesc[13] = "version 6.0 is included within Java TM Platform Standard Edition 6 JDK. The Java Web Start 6.0 uses the Java TM Network Launching Protocol & API (JNLP) as underlying technology and is packed with a variety of key benefits that makes it so popular and attractive.";
fDesc[14] = "enhancements and with realistic and different perspectives from the simulated aerial views during their virtual flights. The program features ultra-realistic clouds, and sky color environments, effects such as sound, day and night, and special effects.";
fDesc[15] = "users of Microsoft’s Flight Simulator 9. The enhancements contained in ActiveSky provide real-time weather condition transitions and lifelike depiction.";
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 = '...';
}
}