var fDesc=new Array();
fDesc[0] = "NVivo to QDA Miner conversion wizard guides you through the steps needed to convert your NVivo 7-11 project into a QDA Miner project (including documents, images, codebooks, codings, and memos). After conversion, you can use QDA Miner 5.0 for analyzing data.
QDA Miner is a qualitative data analysis software package for coding, annotating, retrieving, and analyzing small and large collections of documents and images.";
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 = '';
}
}