var mWin;

function flashDebug(msg){
	if( debug ){
		debug_message(msg);
	}
}

function openMusicPlayerWindow(){
	//debug_message('got to music player');
	var mWin = window.open('/xspf_player/player.html', 'mWin', 'width=300,height=100,resizable=1,status=0,location=0,menubar=0,titlebar=0,toolbar=0');
	if( mWin ){
		//debug_message('successfully opened window');
		mWin.blur();
		mWin.moveTo(0,0);
		window.focus();
	}
	return;
}

