var fDesc=new Array(); fDesc[0] = "iValuation apportions the club's total tax liability between members of the club. Check that the Tax Year set in iValuation is correct. To do this open the Tax Liability form, Members | Tax Liability from the main menu. The current Tax Period (ie. Tax Year) is shown on the form. If it is incorrect, then click on the New Tax Year button and select the correct period."; 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 = ''; } }