var fDesc=new Array();
fDesc[1] = "the renaming process, user can also select how many characters should be removed or replaced, beginning on a defined character position in the file/folder name. User can add characters, numbers or complete words to existing file or folder name.";
fDesc[2] = "(MAC) Address of your Network Interface Card (NIC) irrespective to your NIC manufacturer or its driver. It a very simple & easy to use utility that gives you enough information about the Network Interface Cards (NIC) installed on your computer.";
fDesc[3] = "highly configurable and provides you with a range of features. Rename master is an excellent utility which provides support for renaming by MP3 tags, JPEG JFIF and EXIF tags and also allows users to rollback the renaming operation.";
fDesc[4] = "a number of smaller files to share them over the internet or by some other mean. Of course you can control the number of partition and size of each part of the file. File split also take care of any file corruption by calculating its CRC signature.";
fDesc[5] = "application can rename files, folders or both, change the case of filenames, remove or change a filename, perform string substitution, Append dates in many formats, remove characters or words, append the parent folder's name, remove digits or symbols, append or propend text and much more.";
fDesc[6] = "XMP, regular expressions, file rename using wildcards, MP3/Ogg vorbis/MPC id3 tagging and MANY more.";
fDesc[7] = "terms, the program is quite simple to use. In the evaluation version you get a nag screen remindimg you to register the program. This occurs very often.";
fDesc[8] = "from the user hard drive. This application features a variety of shredding algorithms, which protects the user's privacy by completely removing the selected files so that no file recovery software available in the market can recover them.";
fDesc[9] = "way. With this program you can rename audio files, video files, documents, image files and other types. The good thing about the program is that it is very easy to use and it lets you navigate through your computer to find the files and rename them very fast.";
fDesc[10] = "in-built preview pane to visualize the after-effects of renamed files.";
fDesc[12] = "tags found in MP3 files. Bulk renaming supports adding a string at the start or at the end of the file name. You can also bulk change multiple files extensions and insert or replace a fixed text inside the file names at once.";
fDesc[13] = "overcome limits on the size of e-mail attachments and as an alternative to disk spanning.";
fDesc[14] = "versions. Additionally, you can batch print AutoCAD DWG and DXF files.";
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 = '...';
}
}