var fDesc=new Array();
fDesc[1] = "As usual in these type of applications, the program opens two separated windows, the left one for the local site (web site at the user PC) and the other (right hand) for the web site in the Internet server the user can open.";
fDesc[2] = "client suites around and is specially useful for corporate environments. Of course, this application has all the main features of an FTP client - you can connect to FTP sites, create, delete, modify, rename and copy directories and files, and more.";
fDesc[5] = "uploading files between the web and the user PC. Files can be html pages, images, etc. for a web site and also videos, music, etc. to share with other web users. The application includes a Site Manager for renaming, creating sites and folders, for deleting files and folders, etc.";
fDesc[13] = "network profiles and switch between network settings. Read more about this netswitcher at http://www.interactive -studios.net";
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 = '...';
}
}