var fDesc=new Array();
fDesc[1] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[2] = "viewing right from .jpeg, .gif, .ico, .bmp, .tif, .png, .wmf, .tiff, .emf, .pcx, down to .tga, along with Adobe Photoshop(.psd), text editing options, web contents (HTML) browsing, hex viewing, and loads of other features.";
fDesc[3] = "complex regular expressions just by selecting its different components from a menu. Then, you can test the created expressions entering values to them. The program will also assist you in creating a replacement string for a given expression.";
fDesc[4] = "source code. It is an advanced tool supporting syntax highlighting, Code Templates, unlimited text size, etc.";
fDesc[5] = "The application accepts wildcard symbols as *.txt and supports multiple types for search when separated by ; (semicolon).In addition, advanced searches and replacements can be accomplish by the use of regular expressions.";
fDesc[6] = "strings used in almost any programming language). This application is intended for programmers, especially for beginners to improve their programming skills, who have problems when interpreting and formulating strings.";
fDesc[7] = "it. You can search for documents that contain a specified phrase or keywords and then replace, insert or remove text, based on your needs.";
fDesc[8] = "be made by the 'Search and Replace' options filtered by wildcards and Regular Expressions. You simply have to specify a search pattern, optionally using a regular expression, and a replacement format, then let it run and it will do the rest itself.";
fDesc[9] = "text processing tasks, the Regular Expression Laboratory is a tool that you need.";
fDesc[10] = "for testing online regular expressions. The Regulator offers the option of customizing things for adding own items. This application makes up for the lack of regular expression support in Visual Studio, and it’s an awesome standalone application.";
fDesc[11] = "a lot of time by avoiding a huge number of monotonous procedures. The program uses regular expressions for renaming files, it features a simple and easy-to-use interface.";
fDesc[12] = "just a few clicks. Criline Search and Replace works equally well with any types of files and support regular expressions.";
fDesc[13] = "software not only replicates Excel’s existing searching functionality, but also offers you the possibility of using “regular expressions” to perform selective replacements in extremely complex character strings and formulas.";
fDesc[14] = "strings and files. Use the regex with automatic source code snippets. Collect regex libraries for future use.";
fDesc[15] = "extract text data inside a string using sophisticated search criteria, far above the capabilities of the MSSQL's PATINDEX and REPLACE functions.";
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 = '...';
}
}