var fDesc=new Array();
fDesc[0] = "SandDock is a powerful window layout and management engine designed to quickly and easily add advanced document paging and dockable windows functionality to your applications. Its components provide a modern replacement for the standard Windows MDI paradigm and an advanced dockable windows system that supports complex layout systems, collapsible control groups and intuitive redocking tools.
SandDock has a fully pluggable rendering engine. Every part of the drawing process can be completely taken over for maximum flexibility.
The SandDock library is small, lightweight and fast. It has a powerful and robust object model that exposes a simple and friendly API so that taking programmatic control of your windows is easy.";
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 = '';
}
}