var fDesc=new Array();
fDesc[0] = "Share files with Minus from your windows explorer send to context menu.
Main Features:
- Share files and folders directly from the explorer context menu
- Add and remove files from the list before uploading
- Copy links to clipboard
- Share link:
- Twitter
- Identi.ca
- Facebook
- Email
- Authentication with Minus account
- Upload to existing gallery
- Display my galleries aka. share history
- Optionally display file size in list";
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 = '';
}
}