var fDesc=new Array(); fDesc[0] = "The BIC Enquiry Tool (BET) is a desktop query tool designed to run on local copy of the BIC Directory, BICPlusIBAN and SEPA Routing Directory. The tool includes pre-defined queries that allow you to search for a BIC code, to find a BIC corresponding to an IBAN, to validate a BIC/IBAN combination or to look at the available payments channels to reach SEPA compliant financial institutions."; 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 = ''; } }