var fDesc=new Array();
fDesc[0] = "eXERD is an Eclipse-based, intelligent and intuitive E-R modeling tool. With eXERD, not only the experienced, but also beginners can do the database modeling with ease. eXERD will offer you a new world of modeling.
eXERD supports editing physical properties – including reverse/forward engineering from/to Oracle, Microsoft SQL Server, IBM DB2, and MySQL.
Features
-Inline WYSIWYG Editing
-Domain
-Naming Rules
-Design Style
-Data Dictionary
-Data Compatibility
-Forward/Reverse Engineering
-Animation
-Context Help Messages
-Powerful XScript Engine
-Review and Modification
-Comparison / Merge
-Artificial Intelligence
-Automatic Update";
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 = '';
}
}