var fDesc=new Array();
fDesc[1] = ", for Mac OS and for Windows. The application allows us to download updates for the following programs: Quicktime Player, iTunes, Safari for Windows, or Quicktime Player + iTunes together.";
fDesc[2] = "uses industry standard IP protocols to allow devices to automatically discover each other without the need to enter IP addresses or configure DNS servers.";
fDesc[3] = "can download it free from the developer's website and install it again in case we need to. This tool have been designed for connecting our computer to the HP website and automatically check up for all of our HP devices and HP software.";
fDesc[4] = "photos with friends and family is as easy as pressing a button!";
fDesc[5] = "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[6] = "contains ... (1) Access 2007 - database management.. (2) Word 2007 - Word processing. (3) Excel 2007 - spreadsheet. (4) PowerPoint 2007 - presentation software. (5) Outlook 2007 - Email and Personal Manager. (5) Publisher 2007";
fDesc[7] = "keyboards and most recently laptops come with multimedia buttons and what are called quick launch buttons. HP Quick Launch Buttons is Hewlett Packard's software solution to enable and control the functions of the buttons included in their laptops and desktops.";
fDesc[8] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[9] = "icons just beside the normal icons for minimizing, maximizing and closing. This is really a wonderful tool to compare some data as in the normal windows the open window is automatically minimized when another is clicked.";
fDesc[10] = "would like to create, this program automatically choose folders containing music files, documents or video files. You can also select additional files, folders and subfolders manually.";
fDesc[11] = "with management buttons allows creation of a new profile, edit a profile etc. The Settings General page allows Launch of Acer eNet Management, views Wireless Adapter, Firewall settings etc and the Network page has three buttons on this page namely: VPN ,WLAN & LAN";
fDesc[12] = "effects and it does this on its own, using pre defined styles. The videos are polished, tightly edited with closeups & synchronization with the music is just awesome.";
fDesc[13] = "page are Express, Memory and Disk. Express Memory Optimization fully optimizes the system and frees unutilized memory Memory Usage Check advises on upgrading the memory modules installed on the system Disk optimization deletes unneeded items and releases occupied disk space";
fDesc[14] = "1000s of artists. You will also be able to listen to music on your PC, mobile player or as ring tones on your mobile phone. With Radiotracker, you will have in your hands the gift of unlimited music all day, free and legal.";
fDesc[15] = ", Windows often doesn't manage your multiple cores very well, so you're not actually getting the full multi-processor power you paid for.";
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 = '...';
}
}