var fDesc=new Array();
fDesc[0] = "Policies Now - Employee Handbooks and Company Policies.
Policies Now makes it simple to create personnel policies that are customized to your organization. It’s easy to produce a complete employee handbook in a fraction of the time it would take you to build one from scratch.";
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 = '';
}
}