var fDesc=new Array();
fDesc[0] = "The CopySpider is a freeware tool to test documents under the existence criterion of undue copies of other documents available on the internet.
A document has copies undue when it suits or transcribed passages from other documents without showing compliance with the standard citation references (bibliography).
The CopySpider was designed to be nimble and precise in identifying similar documents available on the internet.
CopySpider has a Professional version with resources focused on productivity evaluation of a large number of documents (batch processing).";
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 = '';
}
}