var fDesc=new Array();
fDesc[1] = "occurred. -The source or destination file may be in use. -The file is presently being used by another program or user.";
fDesc[2] = "advantages of the new enhanced user interface. In addition, virtually anyone, anywhere can intervene in the review process with Autodesk Design Review, the free integrated solution available to consult, write and revise designs electronically.";
fDesc[3] = "interfaces to ensure that data remains safe when the computer is unattended or for public use, such as those in an open environment. It also prevents data from being copied to external storage media, such as an optical disk, flash drive or floppy disk.";
fDesc[4] = "your drives, which does not provide you with any information about used space and free space in the drives. But here is an opportunity for you to get Window Vista style icons, which not only have modern stylish look but also tell you about consumed and free space of drives.";
fDesc[5] = "Eos Utility CD package after purchasing a Canon Digital Camera. This piece of software has been designed to allow us to create units with both image and audio and save them as a single item. We can access this program via Start, Canon Utilities, Camera Window, MyCamera.";
fDesc[6] = "contains a powerful search tool that lets you find and download sound files (mp3, wav, midi, etc.), Image or video (movies, trailers, jokes, graphics) on the Internet.";
fDesc[7] = "without your knowledge. WinPatrol was the pioneer in using a heuristic behavioral approach to detecting attacks and violations of your computing environment. It continues to be one of the most powerful system monitors while staying a single small program. As a robust SECURITY MONITOR , WinPatrol will alert you to hijackings, malware attacks and critical changes made to your computer without your permission. As a MULTI PURPOSE SUPPORT UTILITY WinPatrol replaces multiple system utilities with its enhanced functionality.";
fDesc[8] = "launching features will show up. Each corner has its own function: Left - up: opens My PC. Left - down: Internet Explorer Favorites. Right - up: switch windows. Right - down: Shorcuts from the desktop. You can change the assignments.";
fDesc[9] = "customizations to suit your needs, including timed capture, capture Hotkey, Saving to File directly or to Clipboard, capturing a region,active window or full screen it has all the basic required features.";
fDesc[11] = "want to hide any window or program? It is beneficial for those who want to secure their privacy and secret data and information. It does not password protect your programs or any window it just hide the programs and window.";
fDesc[13] = "you to easily disable/enable the applications in the list.";
fDesc[14] = "and reliable way. It scans your entire registry for any invalid or obsolete entries and provides a list of the registry errors found.";
fDesc[15] = "easily. Trial Version does not have any nagging pop ups. Registered Users of the utility get Free upgrades.";
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 = '...';
}
}