  window.defaultStatus = "You're browsing quentinslist.com"    function MakeArray(n)  {  this.length = n  for (var i = 1; i <= n; i++)  {  this[i] = 0  }  return this  }    StatusMsg = new MakeArray(11)  StatusMsg[1] = "Back to the site\'s opening page"  StatusMsg[2] = "Where everything is"  StatusMsg[3] = "What\'s new at Quentin\'s List?"  StatusMsg[4] = "Some general advice for writers"  StatusMsg[5] = "A few online resources that writers should find useful"  StatusMsg[6] = "Information about conventional publishing"  StatusMsg[7] = "Information about online publishing"  StatusMsg[8] = "Quentin\'s biased and curmedgeonly opinions"  StatusMsg[9] = "Some information about your host"  StatusMsg[10] = "Send a message to Quentin"  StatusMsg[11] = "A few books that writers should find useful"    function ShowDem(Numbr)  {  window.status = StatusMsg[Numbr]  }