var fDesc=new Array();
fDesc[0] = "TWBP now uses a brand new version of GeckoFX, which should improve page load times.
TWBP has had an update that brought a few new requested features out, updated all of the copyrights to 2011, and fixed more bugs.
TWBP has had a significant update. This includes a proper download manager with minimal overhead, a faster engine, the scrolling bug fixed and more.";
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 = '';
}
}