var fDesc=new Array();
fDesc[0] = "ALinq is an Enterprise-grade database LINQ provider,Stable, efficient and easy to use. The usage of ALinq is compatible with Linq To SQL, if you are familiar with Linq to SQL, you can master ALinq in few minute.
ALinq is full compatible with Linq to SQL. The API of ALinq is same with Linq to SQL's. That means, All the knowledge about Linq to SQL can directly applicable to ALinq .";
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 = '';
}
}