/*
*******************************************
	Music Player Popup functions
*******************************************
*/

/*
* Generic window open functions
*/
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openMusicPopupPlaylist(sFolder) {
	sMusicURL = '/music/' + sFolder;
	MM_openBrWindow(sMusicURL,'mp3player','width=500,height=200');
	// was 150px height	
}

function openMusicPopup() {
	openMusicPopupPlaylist('bathroom_sessions');
}


