var fDesc=new Array();
fDesc[1] = "native file support for Adobe Flash and Adobe Photoshop Album slide shows, and electronic cards, and eBooks Adobe Reader is free, works with Windows 98/Me/2000/XP/2003/Vis ta.";
fDesc[2] = "Download Manager will let you have full control over your downloads, accelerating download speed to squeeze your bandwidth.";
fDesc[3] = "see on the web page. HP Smart Web Printing allows users to: Select text and graphics easily from any web site and save a handy list of clips, save paper by combining portions of numerous web pages and preview and modify clips before printing";
fDesc[4] = "(CD, Blu-Ray Disc, DVD or HD DVD). Among its principal features, you can find an audio converter, a \"Mixed Disc\" option, that lets you create CDs combining different types of files, and many disc utilities.";
fDesc[5] = "in PowerPoint 97 and later versions. It supports opening password-protected presentations. You can view and print presentations, but you cannot edit them in the PowerPoint Viewer 2007.";
fDesc[6] = "television channels and radio stations from anywhere in the world. In addition, due to the popularity of this system, we can find a lot of websites that link us directly with SopCast to watch a given program, such as a movie or a sporting event.";
fDesc[7] = "photos (pictures) to email, send to mobile phone, create calendars, slide shows, greeting cards, print pictures or output files, etc. from images captured by camera, scanner, or whatever digital mean, or from existing pictures on the Hard Disk or other removable memory media.";
fDesc[8] = "transfer them to your phone and its photo mode tab lets you to copy photos, video files between your pc and phone allowing you to search,preview and transfer to your phone.";
fDesc[9] = "disk. Supporting various operating systems it allows you to install multiple operating systems on a single PC according to your needs and multiple operating systems on a single partition.";
fDesc[10] = "coordinates, so you can watch the sky on the screen as if you were using a telescope in real life. You can make the illusion more realistic adding atmosphere effects and views including the ground.";
fDesc[11] = "system, CPU, BIOS, graphic interface, memory, and so on. The program's interface is divided into seven tabs, each one giving comprehensive information on one particular item: CPU, caches, mainboard, memory, SPD, graphics, and program information.";
fDesc[12] = "available Updates for various Softwares installed on his/her computer. It also allows you to see details about any installed software or Uninstall it .";
fDesc[13] = "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[14] = "audio/video files as soon as a download starts. With IDA download and save video from popular video sharing sites like YouTube. Some IDA features include: Scheduler, FTP Explorer, ZIP browse before downloading. IDA integrates into all popular browsers.";
fDesc[15] = "Light to autostart with Windows or not, and to include sounds or not. The complete version lets you disable the update info, use anti aliasing, prefer favicons or throw files into folder, and lets you disable the Dynamic Mouse Pointer and shortcut arrows.";
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 = '...';
}
}