var fDesc=new Array();
fDesc[0] = "SQL SideKick is a template driven assistant that allows you to quickly produce ADO code for Visual Basic and ASP based on a single table or complex query.
No more tedious coding… no more redundant cutting and pasting… SQL SideKick does the heavy lifting for you.
Main Features:
- Writes clean ADO code
- Template driven to accommodate specific coding structures
- Visual Query Builder lets you create complex queries
- Works with all versions of MS Access and SQL Server (including MSDE)
- Profiles allow you to work with multiple data sources";
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 = '';
}
}