var fDesc=new Array();
fDesc[0] = "ClaroCapture can collect text, audio and images from any document or web page, grouping it as a project file. The research file can be sent to Word, PowerPoint or ClaroIdeas, our latest ideas mapping software. ClaroCapture can also extract highlighted text from Microsoft Word documents. ClaroCapture is a great study skills tool.
With ClaroCapture information can be captured and exported to various programs. Selected text can be captured from any computer application – web pages, PDF files, Word documents, databases – and added to the current project. Images, audio and video files can be added by dragging them into the Capture project list.";
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 = '';
}
}