var fDesc=new Array(); fDesc[0] = "The Share Register software is the computerized version of the paper based system currently in use by many companies. They have tried to keep it as generic as possible so that it could be used in many countries and in many situations. Maintain your Shareholders listing in a master file with key data and also incorporating summarized as well as transactional details at a glance. All this information can be reported on from the view. Ability to create your own custom share type. Some examples are “Ordinary”, “Preference”, “Redeemable” etc."; 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 = ''; } }