var fDesc=new Array();
fDesc[0] = "Sometimes working with ADO.NET connection strings can be hard. Things suddenly stop working because of a connectivity problem a server problem or a bug in your code.Well, this little tool can help you get to the source of the problem. All it does is let you type/paste in a connection string and use that to try to connect to your database. But sometimes that's all you need.";
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 = '';
}
}