var fDesc=new Array();
fDesc[0] = "Job Board Creator turns your WordPress site into a powerful online job board. JBC is easy to use and fully functional the moment you install it.
Features include: automatic post expiration, e-mail notification and online contact forms.
Currently, JBC requires themes (such as Job Board Framework) that are specifically designed for this plugin. What's more, in order to charge a fee for job postings, you will need our PayPal Gateway plugin. Themes and plugins can be found on our web site -- http://jbcreator.com";
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 = '';
}
}