var fDesc=new Array();
fDesc[0] = "Komodo Drop is small, light weight application for Windows, Mac OS X and Linux that makes it easy and fast to upload images to SmugMug. It also allows basic management of categories, sub categories and albums. Komodo Drop is free and open source. Komodo Drop is still beta software; however, it is stable and full featured.
Main Features:
- Small and light weight
- Multi platform: Windows, Mac OS X & Linux
- Fast multi-threaded uploads
- Resumeable uploads
- Duplicate image detection
- Create categories and sub categories
- Delete albums, categories and sub categories";
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 = '';
}
}