function modalruta(){
	window.open("jukebox/jukebox.html", "JUKEBOX", "width=320, height=320, menubar=no");
}

function understreck(){
	jukebox.style.textDecoration ="underline";
}

function ingetstreck(){
	jukebox.style.textDecoration = "none";
}

jukebox.onclick = modalruta;
jukebox.onmouseover = understreck;
jukebox.onmouseout = ingetstreck;
