var fDesc=new Array();
fDesc[0] = "Medusa automatically lets you search for music, images, movies, programs and any other kinds of files you want!
Medusa is best described as a crossover between a search engine and an offline explorer. With Medusa you can search thousands of web pages faster than ever and easily download all the different files that you find on these.
All you need besides Medusa is a URL to start your search from. Medusa then follows all the links on that web page to new web pages in its search for the files you want. As soon as Medusa finds a file of the same kind that you are looking for it is displayed as a thumbnail in the programs explorer-like interface.";
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 = '';
}
}