var fDesc=new Array();
fDesc[0] = "SubDownloader is a program for automatic download/upload subtitles for videofiles (DIVX,MPEG,AVI,VOB,etc) and DVD's using fast hashing.
Providing a friendly interface, users have a better movie experience since searching for subtitles is no longer dull or boring. SubDownloader follows the KISS (Keep It Simple, Stupid) priciple. You just want to watch a good movie, right?! So, subtitle searching and matching for your movies should be a simple task. It is now! :-)";
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 = '';
}
}