var Jukebox = '';

myMsg = "                               "
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=700, height=500, toolbar=yes, scrollbars=yes, location=yes, menubar=yes, status=yes, resizable=yes, copyhistory=yes");
OpenWin.focus()
}

function sample(page) {
OpenWin = window.open(page, "SampWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no, width=500, height=250");
}

function openjukebox() {

if (!Jukebox.open) {
	Jukebox = window.open('http://www.vixenrecords.com/newfoxymusic/jukebox/foxyjukebox.htm', 'jukebox')}
}

function jukelink(page) {
OpenJuke = window.open(page, "JukeWindow", "top=0, left=0, width=900, height=750, toolbar=yes, scrollbars=yes, location=yes, menubar=yes, status=yes, resizable=yes, copyhistory=yes");
OpenJuke.focus()
}