<!--
var newwindow;

function jukebox_open() {

	var xLeft = screen.availWidth - 250 - 25;
	var yTop = Math.round((screen.availHeight - 475)/2);
	
  params = "left=" + xLeft + ",top=" + yTop + ",width=250,height=475,resizable=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,copyhistory=no";
  newwindow = window.open('fileadmin/flash/jukebox.html','Cassandra_Sterling_Jukebox', params);
	if (window.focus) newwindow.focus();
}
// -->