var fDesc=new Array();
fDesc[0] = "VooDooShare is a widget that is completely free and offers drag and drop sharing of multiple files.VooDooShare is extremely small and efficient. It is less than 2 MB, which is half the size of one MP3 song.
Sending Options:
- ANY file on your PC, just Drag and Drop!
- Large files that are too big to email
- Office files to your home (and back)
- Important files for a temporary backup
- 25 files at a time, 500 MB Max per file
- Just Drag and Drop to VooDooShare!";
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 = '';
}
}