var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "that you see when you open My Computer. Below the icon of each drive, you will see a progress bar, that will show you how full the drive is.";
fDesc[4] = "“Quick Learning” option offers you the survey of the program showing the main options. It is possible to change all icons on your PC by applying icon themes or to change icons of individual discs and folders.";
fDesc[6] = "removable drives. If found, it scans for any autorun.inf file in those drives. Then it scans them. If they´re dangerous, it asks you if you want to remove that files. (If AutoProtect is selected, it will automatically delete the files, without asking.)";
fDesc[7] = "other icon. It is easy to use. You can change icons of folders quickly and freely just by clicking several buttons.";
fDesc[8] = "Center. XPlay even makes Mac iPods work with Windows, and perhaps more impressively, with iTunes for Windows. Oriented to iPods users who use a Windows-based PC.";
fDesc[9] = "operating system. Using this small utility you can change default icons of your hard drives to recognize them better. For example, you can set a special icon for the system drive or for a drive that you use for keeping files of a certain type.";
fDesc[10] = "its drive icon and run a program or any file when it was inserted, you can also change the label of the CD-ROM drive. If you want to change your Hard Disk(s) icon (available on Windows 95/98 only) Because Microsoft has removed this feature from all Windows versions above 98! If you want to change any folder icon so you can make every folder different.";
fDesc[11] = "Equally simple is the definition of all window menu and button attributes, including background, sound and text.";
fDesc[12] = "create, edit and remove virtual drives of your computer.";
fDesc[13] = ", Drive Icons, and the ability to automatically start any file from CD (including Microsoft PowerPoint presentations).";
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 = '...';
}
}