var fDesc=new Array();
fDesc[0] = "Cloud Turtle connects you to three different storage services: Amazon S3, Nirvanix and Timeline Cloud.
Cloud Turtle features: multi-task operations such as upload, download and delete; multi-threaded download and upload; can pause and resume upload and download and can be set to auto retry failed tasks in case of a failed connection.
The program has a simple, dynamic user interface that can be changed to your preferred layout, can throttle bandwidth usage, saves your layout and tasks for next time and provides a complete history log.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}