var fDesc=new Array();
fDesc[1] = "helps the user to store the code in an organized way. It makes provision for the user to save the data in an encrypted database with higher security levels and paste the favorite code snippets very quickly, and then synchronize the changing data quickly.";
fDesc[2] = "built-in library with more than 50,000 lines of codes. It can convert source codes into HTML codes that can be easily understood by normal users who do not have a rich knowledge about codes implementing a program.";
fDesc[3] = "the database and managing the source code in an organized way. The data synchronization is made effectively using the VB.NET Code Library. The documents and the data codes can be secured in one place which is helpful for the user.";
fDesc[4] = ", powerful printing capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[5] = "search engine, powerful printing capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[6] = "engine, powerful printing capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[7] = "capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[8] = "engine, powerful printing capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[9] = "included in VB.NET and C#.";
fDesc[10] = "engine, powerful printing capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[11] = "your .NET and ASP.NET applications. Access all FTP capabilities through a straightforward, intuitive object model.";
fDesc[12] = "printing capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[13] = "password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[14] = "capability, password protection, user notes & attachments handeling, favorites & rating support and more!";
fDesc[15] = "Applications including; complete applications, groups of libraries, single objects.";
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 = '...';
}
}