var fDesc=new Array();
fDesc[0] = "The complete pricing guide for dwelling reconstruction costs. Reliable, specific data you can apply on every repair and remodeling job. Up-to-date material costs and labor figures based on thousands of jobs across the country. Provides recommended crew sizes; average production rates; exact material, equipment, and labor costs; a total unit cost and a total price including overhead and profit. Separate listings for high- and low-volume builders, so prices shown are specific for any size business. Estimating tips specific to repair and remodeling work to make your bids complete, realistic, and profitable.";
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 = '';
}
}