var fDesc=new Array();
fDesc[0] = "SQLBox - the SQL assignment processor.
Using SQLBox, you can retrieve, edit or otherwise modify large amounts of database information with a single assignment. Any viewable result data, is instantly displayed on a view grid. The contents of both the tab pages (the assignment and it's result) are instantly printable, by using the print assignments (through a preview window, allowing you to judge your page before actually printing it.
A full SQL enabled User Report Generator (URD) is included, allowing you to do in-depth SQL reporting. The URD also reports to both screen and printer.
Simple, quick and easy. Shareware: registration costs US$30, with free upgrades and support.";
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 = '';
}
}