var fDesc=new Array();
fDesc[0] = "A widget for searching for torrents across multiple sites - at once!.
Search all your favorite torrent sites... at the same time!
This is based on TorrentSearch widget, but now with a tab for each site, and enhanced display of information. It will display search results in tabs simultaneously for all sites you have selected. Displays all the key information: name, download link, size, seeders, and leechers.
Also comes with a mini mode!";
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 = '';
}
}