var fDesc=new Array();
fDesc[0] = "MSSQL-to-CSV is a program to convert MS SQL databases into CSV format. Key features:
(1) all versions of MS SQL are supported (including SQL Azure);
(2) option to convert individual tables;
(3) option to convert partial data using SELECT-queries;
(4) option to select CSV delimiter: tab, comma or semicolon;
(6) stores conversion settings into profile;
(7) command line support;
(8) easy-to-use wizard style interface";
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 = '';
}
}