var fDesc=new Array();
fDesc[0] = "SmartScreen™, an integrated background screening application representing a world first in the industry.
With SmartScreen™ you can capture an entire background screening order, including all your favorite checks like consumer credit, driver's license, qualifications, criminal records and fraud prevention.
And while you're at it, you can attach all the bits of paperwork that you normally have to e-mail or fax right there, on the order.";
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 = '';
}
}