var fDesc=new Array(); fDesc[0] = "Mediator components are based upon xHarbour kernel. Apart from the above VCL components there are several low level classes which are used to access xHarbour kernel. Using xHarbour kernel as a foundation for Mediator components enables nearly 100% compatibility between DBF-based applications and Mediator-based applications. See Low level interface for more information.
There are several possibilities here. The option which is most interesting for you will probably depend whether you are Clipper/xHarbour developer."; 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 = ''; } }