var fDesc=new Array();
fDesc[0] = "Using the Single Source paradigm, MyComponents contains single source units which compiles and works correctly natively in Delphi 5/6/7/2005/2006/2007 without need for the BDE or any other API layers. The components are extremely flexible and powerful for the advanced developer, yet also simple to use if you are a beginner and comfortable with borland's standard data aware components. The MyComponents accesses your MySQL servers/database directly, without any need for middle tier layers like BDE / ODBC / ADO or dbExpress with their inherent limitations.";
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 = '';
}
}