var fDesc=new Array();
fDesc[1] = "advanced users. The program features a simple and intuitive Explorer style interface that shows the local and remote folders in a clear way and allows you to customize them the way your want.";
fDesc[2] = "songs you like. You can move audio files, to your mobile phone. Drag and drop audio files straight from an audio CD to the program window. Then these audio files will transfer in to the phone memory.";
fDesc[3] = "transfer them to your phone and its photo mode tab lets you to copy photos, video files between your pc and phone allowing you to search,preview and transfer to your phone.";
fDesc[4] = "speed by 7-10 times.";
fDesc[5] = "downloading files from any remote FTP server. The program supports using proxies and passive connections. The program has an FTP server with many features.";
fDesc[6] = "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[7] = "Windows Vista is not supported yet. If you have used the Windows built-in FTP-Client you may want to know this tool better, preety easy to use and efective.";
fDesc[8] = "information on several computers that you use constantly. This incredible application enables you to keep track of all your recent changes and all the things done at work just at your disposal in your home computer.";
fDesc[9] = "regular browser, can perform site to site transfers, user can edit files at both ends of the connection, it supports firewall, etc. The included Site Manager window allows the user to set the site name, host IP address, user name, password, etc.";
fDesc[10] = "and folder, voice conference. Typically boosts communication and allows easy collaboration. 10 users license for free!";
fDesc[11] = "between user PC and an FTP site on the web. The application is useful for web sites maintenance and publishing, uploading files, images, music, etc., for sharing files with coleagues, as well as for backing up files and documents into the web.";
fDesc[12] = "between your computer and FTP server.";
fDesc[13] = "The program allows user to compress the files to be transferred for saving time and increasing security during the communication period. It supports SFTP and HTTPS, and it is compliant with HIPAA security rules.";
fDesc[14] = "the need to launch iTunes. This incredible application enables you to convert your music files collection into audio formats supported by your iPod in a few simple steps.";
fDesc[15] = "the content of the sub folders can be downloaded by the other Easy Share users. Easy Share provides automatic search facility.";
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 = '...';
}
}