var fDesc=new Array();
fDesc[1] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[2] = "Windows applications and web pages. It includes advanced text search capabilities and a 'favorites' tab to save the more often searched topics, themes and/or terms. The application itself includes an image editor to help user on including the help file to the developed and compiled program.";
fDesc[3] = "Windows XP, Vista and Windows 7. WinEdt can be used as a front end for compilers and typesetting systems, such as TeX or HTML. It allows you to customize highlighting schemes and features multilingual spell checking. You can download word lists from WinEdt.s Community site.";
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] = "compatibility and also offers support to HTML, DHTML, JPEG and PNG graphics, JavaScript, animations, images, VBScript, and most of the Internet Explorer plug-ins.";
fDesc[6] = "and compile them in a single file. It includes all the files from a specific folder with images, flash, audio and video and makes a standalone EXE file, which can be opened from any Windows operating system.";
fDesc[7] = "of files, including HTML, WAV, TXT, JPG, CSS, GIF, MID, DHTML, JavaScript, FLASH and many more. You will be able to convert all the mentioned formats into a specific format that can be launched in an e-book like interface. The application's interface is very intuitive and friendly.";
fDesc[8] = "and encrypted e-books, manuals or presentations.";
fDesc[9] = ", that will let you preview the scripts running during the programming process. This is the most advanced editor for text files, Javascripts, XML documents, SQL, HTML, CSS, PHP, Perl, Python, Ruby TCL and Coldfusion. This is a great application that has the syntax highlighting facility.";
fDesc[10] = "compress HTML pages or entire site with all resources into compact EXE file with built-in browser. All content will be protected from copying.";
fDesc[11] = "runtime module. Consequently you need to download and install this runtime module on your system in order to view the publication.";
fDesc[13] = "links, just from a set of images and a single HTML page to use as a basis for created pages.";
fDesc[14] = "solid executable file (.exe) with an integrated HTML browser.";
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 = '...';
}
}