myMsg = "                               The official website for Malcolm Fox, John Hunt Discographies and Opera for Youth UK website has moved! Please click on the link above and you will be forwarded to the new URL.                                                           "
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", "width=590, height=430, toolbar=yes, scrollbars=yes, location=yes, menubar=yes, status=yes, resizable=yes, copyhistory=yes");
OpenWin.focus()
}