var fDesc=new Array();
fDesc[0] = "Qiqqa is a tool designed for PDF and research management.
Main Features:
- Import all your PDFs and they're OCRed, tags auto-extracted, and Qiqqa helps you quickly populate any missing metadata.
- Qiqqa reveals connections about, and between papers and concepts
- Built-in PDF reader with annotating and highlighting, automated jump links, tablet sync, etc.";
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 = '';
}
}