var fDesc=new Array();
fDesc[0] = "Friday Night Cranks Toolbar keeps you connected with the latest Cranks.
Friday Night Cranks puts on a show every Friday night, 9pm - 11pm EST, broadcasting live prank calls to businesses, companies and people - which has proven to be a great way to pass time on a Friday night. Everyone has pranked called people in their lives, whether it be alone or with a group and on a rainy day or boring night, you have probably done it. Friday Night Cranks, on the other hand does, it funnier and better: with Jared and Kristin doing over 230 shows as of June 2011, you can be guarenteed a laugh";
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 = '';
}
}