var fDesc=new Array(); fDesc[0] = "This program was written or aimed for the Painting Contractor who is a Owner / Operator. This means that you run the business and also work on the jobs along side with your employees. This program also assumes that you as the contractor have an general idea on how long it should take to complete the tasks that you are estimating on. If you have never painted before and decided to become a painting contractor then I'm not sure this program is for you."; 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 = ''; } }