var fDesc=new Array();
fDesc[1] = "fault-tolerant SATA RAID 10 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X and 945 chipset-based platforms. It provides support for high-performance SATA RAID 0 arrays & redundant SATA RAID 1 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925, 915 chipset-based platforms. It also provides AHCI support on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925 and 915 chipset-based platforms, as well as on Mobile Intel® 915/910 chipset-based platforms.";
fDesc[2] = "furnish a flat and calculate the it's cost with the latest IKEA prices. You can share the plan of your dream bedroom by saving the project to the disk and send it by email to your friend.";
fDesc[3] = "Microsoft PowerPoint and Word documents by up to 98% without reducing the quality or requiring any decompressing tools. The tool has add-ons for Microsoft Word and PowerPoint and a beautiful search window for batch compressing.";
fDesc[4] = "furniture and decoration from the popular Swedish furniture chain IKEA, mainly concentrating on living rooms, bedrooms and home offices. It is the second stuff pack to feature products of a real-world company.";
fDesc[5] = "the system. The enterprise edition of Deep Freeze offers a centralized control and better management options to system administrators.";
fDesc[6] = "computer is idle, your desktop will transform into beautiful scenery different from anything you have seen before! Download a piece of nature to your screen today and get ready to relax in the most natural way!";
fDesc[7] = "games. The games run efficiently and the downloads are quick. InstantAction also creates a large game community for everyone to join in. It will surely cause problems in lots of offices around the world. It is the best thing that has happened to multi-player gaming.";
fDesc[8] = "wasted page. This is the page with just a URL, banner ad, legal disclaimer, etc. These wasted pages occur many times a day littering homes and offices around the world and wasting money, trees, and time.";
fDesc[9] = ", buying an office, hiring your staff, and so on. According to your incomes will be your expenses in buying new clothing, hiring new staff, buying new offices, etc. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[10] = "your USB device over the Local network or the Internet. ou will be instantly connected to any USB drive configured on your Local network or the Internet as if it is plugged to your system.";
fDesc[11] = "simplicity. What it does is basically decorates your desktop with Christmas items, such as Christmas trees, Christmas socks, Christmas trees’ balls, and else. Besides the decorating purpose, it adds a basic Christmas countdown clock.";
fDesc[13] = ", faxes, etc. Seamless interface to Word, Wordperfect and Winfax. User defined fields, quick popups.";
fDesc[14] = "allows you to protect data stored at desktops, laptops and network file servers operating under Microsoft Windows, Novell, Linux.";
fDesc[15] = ", appointments, and activities, so you will never forget any of them. The program features an attractive and intuitive user interface, built on the features introduced in Microsoft Outlook.";
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 = '...';
}
}