var fDesc=new Array();
fDesc[0] = "XL-DBQuery is a powerful add-in for Microsoft Excel that makes it easy to perform data analysis and reporting. Unlike Excel's built-in "MS Query" function, XL-DBQuery offers
an intuitive query syntax that lets users build complex queries, without having to master SQL (Structured Query language).
Whether you're a novice Excel user who needs to perform complex data analysis and reporting on corporate-wide data or an experienced data analyst who needs to create complex queries quickly and easily, XL-DBQuery has the tools that you need.
XL-DBQuery is based upon SBS Development's flagship Automated-SQL-Builder query builder, widely considered to be one of the best data querying controls available today.
Rather than forcing analysts to learn new skills, XL-DBQuery builds on the Excel skills that many business people already have. The simple and intuitive interface makes analysts self-reliant and no longer dependent upon data specialists or IT professionals to help them with data analysis.";
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 = '';
}
}