var fDesc=new Array();
fDesc[0] = "TSM is a Windows package running under the Ox matrix language, with front end supplied by the Java JRE. Time Series Modelling 4 is a comprehensive package for linear and nonlinear time series modelling. It will estimate and forecast ARIMA and ARFIMA models, several GARCH, FIGARCH, APARCH and EGARCH variants, bilinear models, Markov-switching and smooth transition models. Most model features can be freely combined, and a flexible and intuitive formula-coding feature allows virtually any model to be set up.
Ox Console, like TSM, is free for educational and research applications.";
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 = '';
}
}