/* Create a pop-out window with the GrooveShark audio
*/
var JUKEBOX_ARTIST_ID = 0;
function doJukebox( ) { 
   var width = 250;
   var height = 292;
   var left = (screen.width - width);
   var top  = 0;
   jukebox_window = window.open('jukebox.php?id='+JUKEBOX_ARTIST_ID, 'jukebox', 'menubar=no,location=no,status=no,scrollbars=no,width='+width+',height='+height+',screenX='+left+',screenY='+top+',left='+left+',top='+top);
}

