var fDesc=new Array();
fDesc[1] = "because it has features that can greatly ease your work. ShellLess Explorer has a nice, intuitive and tabbed multi-panel Interface. The navigation bar is similar to Windows Vista and you will have a total control where you can go to any location on your HDD.";
fDesc[2] = "automatic Internet updates, and uses the revolutionary Norman SandBox for proactive protection against malware.";
fDesc[3] = "file or directory. The program can set permissions according to predefined presets. It adds itself to the properties page of any file or folder.";
fDesc[4] = "music sheet with very much precision. Also you can add and change lyrics from MIDI files and it analyzes the MIDI files to display chord names.";
fDesc[5] = "and folders between users according to predefined schedules, and protects system files and folders.";
fDesc[6] = "automatically according to the current user's idenity and the timetable that is defined for it. You can disable Internet acces";
fDesc[7] = "the user configurable function keys, Nico’s Commander is a capable application that can do lots of other operations like file management and archive management.";
fDesc[9] = "conversions at once and specify the bit rate for sound-quality control";
fDesc[10] = "lets you lock Outlook Express and password-protect the message base files and the address book.";
fDesc[11] = "MP3 files and convert or encode audio files between WAV and MP3 formats.";
fDesc[12] = "computer. This program provides three levels of protection to suit any user : \"Hidden\", \"Read Only\", \"Full Control\".";
fDesc[13] = "your computer. This program provides three levels of protection to suit any user : \"Hidden\", \"Read Only\", \"Full Control\".";
fDesc[14] = "Store all file types; Word, Excel, Websites, Email, phtos, videos, message boards together in the same list.";
fDesc[15] = "ExplorerListView on the form to get the possibilities of Windows Explorer in your applications...";
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 = '...';
}
}