var fDesc=new Array();
fDesc[0] = "ThesesAssistDrawer, shorted as TAD, is a powerful MS Word addin that can help you configure the layout of papers, theses or science articles.
TAD features one click to do the following:
Creating a thesis template;
Inserting captions for figures, tables or equations;
Inserting cross-references for caption number, heading number, reference number, etc.;
Editing references;
Sorting references;
Inserting a footnote;
Recording the document location;
Inserting a landscape page;
Layouting multiple figures with separate captions or with a shared caption;
Adjusting multiple figures to the recorded height, width, or size;
Selecting all figures in the document;
Inserting a predefined three-line table;
Selecting all tables in the document;
Enhanced bookmark management;
Enhanced wildcard search.
The program is compatible with 2007 or newer version of Microsoft Word, and with 2016 or newer version of Kingsoft WPS.";
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 = '';
}
}