var fDesc=new Array();
fDesc[0] = "SQLite Designer tools to create and manage easy db for developers. also support Linq to SQLite (C#) code generator and SQL Parser.
SQLite Designer is a small, useful tool specially designed to help you create and manage databases. It's an application for developers that also supports Linq to SQLite (C#) code generator and SQL Parser.
Here are some key features of "SQlite Designer":
-Design SQLite Database easy
-Get Linq class of your db by one click
-Syntax editor for SQL and C#";
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 = '';
}
}