var fDesc=new Array();
fDesc[0] = "Use this calculator to determine child support obligations according to North Carolina Child Support Guidelines.
This calculator will automatically determine if your situation requires a calculation based on the primary custody, joint custody, or split custody guidelines. NC Child Support Guidelines only cover families making less than $25,000 per month. Deviations may be made from the guidelines, but are not covered by this calculator.";
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 = '';
}
}