var fDesc=new Array();
fDesc[0] = "CEQuery is a stand alone light weight application for managing SQL Server CE databases. It is developed in C# and supports SQL Server CE 3.5 and 4.0. CEQuery was written in C# with the help of Visual Studio 2008 platform. This version has been upgraded to VS2010. SQL CE version 4 has been supported in this release.";
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 = '';
}
}