var MAR_Music_Window = null;

function openWindow (url, autoload) {
	if (MAR_Music_Window == null || MAR_Music_Window.closed == true) {
		MAR_Music_Window = window.open('', "MARAUDIO", "width=160,height=160,scrollbars=no,location=no");
	}
	if(!autoload || autoload && MAR_Music_Window.location == 'about:blank') {
		MAR_Music_Window.focus();
	}
	if(MAR_Music_Window.location == 'about:blank' ) {
		MAR_Music_Window.location = url;
	}
}

$(document).ready(
	function(){
			openWindow('/fileadmin/templates/audioplayer/index.html', true);
	}
);
