var fDesc=new Array();
fDesc[0] = "The exG2antt library lets the user changes its visual appearance using skins, each one providing an additional visual experience that enhances viewing pleasure.
Features of eXG2antt include:
- Compatible with the Data Execution Prevention (DEP)
- Print and Print Preview support
- WYSWYG Template/Layout Editor support
- Skinnable Interface support ( ability to apply a skin to any background part )
- ADO, DAO support
- Ability to save/load the control's data to/from XML documents
- EMF Format support ( Ability to save the control's content to Enhanced Metafile (EMF) file, and so to any BMP, JPG, GIF or PNG formats )";
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 = '';
}
}