var fDesc=new Array(); fDesc[0] = "Karvonite is a FREE persistence framework for the .NET Framework 2 and it focuses on the manipulation and persistence of .NET objects. This technology provides a new direction for how small to midsize applications can store and deploy data. Karvonite is not an O/R mapping tool for a very good reason. There is no relational world to map to. In Karvonite, object data is persisted to an object library. Karvonite persistence framework is well-suited for creating document centric applications (i.e., a word processor, a game-level editor, game editing tools, configuration files), storing game data, and other kind of applications where XML files are not enough and the horsepower of a SQL engine is unnecessary."; 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 = ''; } }