// JavaScript Document

function SetThingsUp() {
// set things up for site links
	var myPlayer = document.getElementById("Listen");
	myPlayer.onclick = myNewWindow;
}
function myNewWindow() {
	var address = "JukeboxWindow.html";
	winFeatures = "width=200, height=200,top=475,left=500";
	this.target = window.open (address, "Jukebox", winFeatures);
	return false;
} //end of function myNewWindow

window.onload = SetThingsUp;