var fDesc=new Array(); fDesc[0] = "JAGS is an open source app for the statistical analysis of Bayesian hierarchical models. JAGS was written with three aims in mind:
- To have a cross-platform engine for the BUGS language.
- To be extensible, allowing users to write their own functions, distributions and samplers.
- To be a plaftorm for experimentation with ideas in Bayesian modelling."; 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 = ''; } }