window.onerror=correct

var head=''
var top=0
var maxheight
var finished=false
//var tickers=new Array()

//tickers[0]='Welcome to Travel HQ'
//tickers[1]='Vancouver BC Canada\'s Travel Planning Experts &middot; European Travel Specialists'
//tickers[2]='<a href=/page119.htm>The fares on this page are just a selection of our current specials. Click for more</a>'
//tickers[3]='Did you know: we speak English, Dutch, German and Russian'

for (i=1;i<=tickers.length-1;i++) {
  if (tickers[i].length>=tickers[top].length) top=i
}

if (document.all)
  document.write('<span id="whatsnew" style="width:100%;height=10;filter:revealTrans(duration=2,transition=19)">'+tickers[0]+'</span>')

if (document.all)
  document.write('<span id=ns style="display:none;">')

function correct(){
  if (finished) {
    setTimeout("begin()",0000)
  }
  return true
}
function begin(){
  if (!document.all)
    return
//  if (maxheight==null)
//    maxheight=temp.offsetHeight
//  whatsnew.style.height=maxheight
//  temp.style.display="none"
  c=1
  finished=true
  change()
}
function change(){
  whatsnew.innerHTML=''
  whatsnew.filters.revealTrans.apply()
  whatsnew.filters.revealTrans.play()
  whatsnew.innerHTML=tickers[c]
  if (c==tickers.length-1) 
    c=0
  else
    c+=1
  setTimeout("change()",4000)
}

