var fDesc=new Array();
fDesc[0] = "XLTools Add-In for MS Excel 2016, 2013, 2010, and 2017 provides a set of tools for data manipulation, automation, and version control. Version Control helps track changes to Excel workbooks and VBA projects; you can compare changes to script line by line, and recover previous versions of macros. Additional features include combining sheets, splitting tables, exporting data, and mail merge.
XLTools Add-In is available in Popup Calendar, Essentials, Pro, and Guru variants.";
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 = '';
}
}