var fDesc=new Array();
fDesc[0] = "ORM Designer is a visual editor for ORM frameworks. ORM Designer helps developers to design application model in a comfortable way and export the model into native ORM Framework definitions.
ORM framework support is not the only strength of ORM Designer. It's built on a well designed user interface which makes creating models fun. The program is focused on clear and well-arranged data model visualization and easy navigation through models with tens of tables. That all is wrapped in modern user interface. To reduce the possibility of error a transparent consistency checking is added.";
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 = '';
}
}