var newwindow = '';
function LoadPlayer() {
	var url = 'http://www.nrj.se/webbradio/frameset.php';
	if (!newwindow.closed && newwindow.location) {
		if(newwindow.location.href.indexOf(url) == -1)
			newwindow.location.href = url;
	} else {
		newwindow=window.open(url,'player','width=790,height=600,scrolling=no,resizable=no,status=yes');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) { newwindow.focus() }
	return false;
}