var fDesc=new Array();
fDesc[0] = "By the time I started using eMule I noticed the sivka mod and used it with great pleasure. When sivka quit coding I tested quite some mods and using the Pastagua mod v3 I really missed the lovelace credit system. So I started my first project and implemented the lovelace CS into the Pastagua. The StulleMule was born.";
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 = '';
}
}