var fDesc=new Array();
fDesc[1] = "sytem that is available whether it be Windows, Free BSD, Mac or Linux. As the name suggest it natively creates compressed RAR files which is a much better compression format as compared to the popular ZIP format.";
fDesc[2] = "from the Recycle Bin, in a DOS window, from Windows Explorer with the SHIFT key held down.";
fDesc[3] = "It's a time saver for people with large amount of files, eg digital camera users, webmasters & mp3 collectors.";
fDesc[4] = ", organize, print and upload to the web all the images you have stored in your computer. Its framed interface will show you the list of folders on the left, and the images it has stored inside on the right.";
fDesc[5] = "disks, cd/dvd rom network or other media supports, to a database file using metadata fields.";
fDesc[6] = "properties. View file and folder content (copy file list to clipboard). View file and directory description.";
fDesc[7] = "network computers instantly, supports searching within compressed archives and duplicate files on your system.";
fDesc[8] = ", Accessed, Modified and Created dates, JPEG metadata, MS Office document dates and properties, NTFS data streams. Date-time shifting and masking.";
fDesc[9] = "quality automatically reads the date of the original picture from a JPEG file and places a stamp on it. It is capable of processing multiple images at one time and helps to regain original image too.";
fDesc[10] = "expected out of this; they have developed a tool called ExtraSearch Free. ExtraSearch Free is probably only one tool available in the market with so many variables of parameters to search from your desktop computer.";
fDesc[11] = "Attributes Too. Have Many Files? Operates In Batch Mode As Well.";
fDesc[12] = "features. You can set or reset individual attributes, Accessed, Modified and Created dates, shift file date-time, print folder contents.";
fDesc[13] = "such as summary information, file date-time stamps and file attributes. Also in in statistics bar.";
fDesc[14] = "allows viewing of the user's rights to the file/directory, how the file was opened, the user's network address, etc.";
fDesc[15] = "will allow you to copy them to the same directory without file name conflicts.";
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 = '...';
}
}