<!--
var loaded = false;
if (document.images) {
   img1off = new Image();img1off.src = "/images/nav_broadcast_off.gif";
   img2off = new Image();img2off.src = "/images/nav_web_off.gif";
   img3off = new Image();img3off.src = "/images/nav_technology_off.gif";
}
// NavBar PreLoad
function imageLoad() {
   if (document.images) {
      img1on = new Image();img1on.src = "/images/nav_broadcast_on.gif";
      img2on = new Image();img2on.src = "/images/nav_web_on.gif";
      img3on = new Image();img3on.src = "/images/nav_technology_on.gif";
      return (loaded = true);
   }
}
// NavBar MouseOut
function rollOut(imgName) {
   if (document.images) {
      document[imgName].src = eval(imgName+"off.src");
   }
}
// NavBar MouseOver
function rollIn(imgName) {
   if (document.images && (loaded == true)) {
      document[imgName].src = eval(imgName+"on.src");
   }
}
// Window PopUp
function PopUp(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
win = window.open(mypage, myname, winprops)
  if (parseInt(navigator.appVersion) >= 4) { 
  win.window.focus();
  }
}


if (navigator.appName == "Netscape") {
document.captureEvents(Event.KEYPRESS)
document.onkeypress=midi_ns
} else if (navigator.appName == "Microsoft Internet Explorer") {
document.onkeypress=midi_ie
}

function midi_ie(){
if (document.all&&event.keyCode==109)
window.open("/jukebox/","Jukebox","toolbar=no,width=150,height=360");
}

function midi_ns(e){
	if (String.fromCharCode(e.which)=="m"){
	window.open("/jukebox/","Jukebox","toolbar=no,width=150,height=360");
	}
}
//-->