myMsg = "                                        Pathways of Ancient Dreaming will be performed by Melbourne Chamber Orchestra in Melbourne, Australia on 26th & 27th October 2008 – see our website for details                                       "
i=0
function scrollMsg() {
  frontPart = myMsg.substring(i,myMsg.length)
  backPart = myMsg.substring(0,i)
  window.status = frontPart + backPart
  if (i < myMsg.length) {
    i++
  }
  else {
    i = 0
  }
  setTimeout("scrollMsg()",100)
}
window.onload=scrollMsg


function extlink(page) {
OpenWin = window.open(page, "CtrlWindow", "top=0, left=0,width=590, height=430, toolbar=yes, scrollbars=yes, location=yes, menubar=yes, status=yes, resizable=yes, copyhistory=yes");
OpenWin.focus()
}

function spress(page) {
SpressWin = window.open(page, "newsWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no, width=500, height=600");
}