var fDesc=new Array();
fDesc[1] = "ease. It is easy to install and use. Mainly designed to create a test environment but powerful enough to handle the real thing.";
fDesc[2] = "features of a simple text editor as well as many more useful features which are helpful to web developers, web designers and Programmers as well.";
fDesc[3] = "can be an excellent good replacement for Notepad and it also offers many powerful features for programming languages such as HTML, C/C++, Perl and Java.";
fDesc[4] = "makes it better than other editors in its group. It is supported on Windows family operating systems. It supports many programming languages to serve the needs of programmers.";
fDesc[5] = "to design or write code for HTML, SQL, Java, JavaScript, XML, Perl, C++, Python, CSS, and others web programming languages. The applications is designed with a very intuitive easy to use interface.";
fDesc[6] = "account. UTF-8 support is the most valuable feature, which will encourage programmers to write strict html code; perhaps in other versions ISO-8859 support may be added, which will be a great advancement.";
fDesc[7] = "Perl Project. Strawberry Perl is a comprehensive tool for developers and programmers working with Perl language and Win32. We can download this program quite easily from the developer’s website.";
fDesc[8] = "This incredible software includes debugging features, a very comfortable editor with syntax highlighting, a syntax check feature that finds errors in your script, and many other features for easy and comfortable Perl development.";
fDesc[9] = "Perl programs under Windows 98/Me/2000/XP.";
fDesc[10] = "source code. It is an advanced tool supporting syntax highlighting, Code Templates, unlimited text size, etc.";
fDesc[11] = "working with HTML, JavaScript, CSS, etc.A built-in browser, FTP client and a number of wizards provide flexible tag and style insertion.";
fDesc[12] = "editor/debugger that is similar to products such as Visual Basic and Delph, and a CGI wizard that generates scripts visually.";
fDesc[13] = "environment and editor for creating, testing, debugging and running perl scripts, directly or through associated html documents. Includes many tools.";
fDesc[14] = "Looking for customizable syntax highlighting feature? Perl Editor 3.1 will do all that and much more. 5000+ Perl coders strong and growing!";
fDesc[15] = ", built-in FTP client, visual file comparison utility, configurable syntax highlighting, file and server explorer.";
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 = '...';
}
}