var fDesc=new Array(); fDesc[0] = "Statlab is a free web-based application for supporting teaching the basics of Design of Experiments (DOE). Statlab has been developed by and is being used with success at the Eindhoven University of Technology in statistics classes for students in Mathematics/Statistics, Chemistry and Technology Management/Industrial Engineering (both for training and examination). It forces students to think pro-actively about setting up an experimental design. Students should learn from the consequences of their choices and omissions. The general opinion of Eindhoven students on Statlab is very positive."; 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 = ''; } }