var fDesc=new Array(); fDesc[0] = "ORM Profiler is a lightweight and efficient application that helps you find data-access anti-patterns and programming mistakes.

Main features:

- Find inefficient use of the database
- Find slow queries
- Gain insight in what code executes which queries
- Gain insight in the performance of your data-access code
- Gain insight in what queries are executed in real-time.
- Fix performance problems easily."; 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 = ''; } }