var fDesc=new Array(); fDesc[0] = "QPSMR Insight is a program for creating research surveys. You can create different kinds of questions, the answers to choose from, etc. All the data are saved in a format (.qif) recognized by the program only. The cross tabulation feature lets you analyze data obtained from sources other than QPSMR. The program can be used along with QPSMR Input which is for data entry and QPSMR Reflect which is for analysis of data."; 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 = ''; } }