var fDesc=new Array(); fDesc[0] = "zebNet VAT Calculator is a small tool that helps you calculate the VAT to add or subtract from a price, at a VAT rate of your choice. After entering the amount to be calculated as well as the VAT rate, zebNet VAT Calculator immediately shows you the gross amount as well as the net amount and even the calculated VAT amount for both values."; 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 = ''; } }