var fDesc=new Array();
fDesc[0] = "Fill in the form on-screen: Print or Email the Form with your Data. Used in all states to report prevailing wages.
Automatically calculates deductions, hours worked, standard and overtime rates & amounts.
Calculation options for All projects. Set up your reusable employee data only once. Instructions including How To Fill Out The Form.";
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 = '';
}
}