var fDesc=new Array();
fDesc[0] = "The SQL Power Wabit is a truly innovative and easy to use BI Reporting tool that doesn't require any SQL knowledge. It offers IT and business users alike the ability to:
- Drag-&-Drop source database tables into a playpen
- Use the Database Definitions to automatically formulate required joins
- Intuitively refine your queries with an "evolving" result set that refreshes instantly and continuously
- Search the result set for text strings to further expedite the database search
- Auto-Create SQL queries without any manual coding
- Generate, modify, format & customize Standard Reports at the touch of a button
- Customize the standard report into multiple sections, assigning a different Query to each section of the report
- Create Real-Time Reports and Dashboards";
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 = '';
}
}