
		function openMediamaker( _width, _height, _parameter) {
			var playerUrl = "http://mediamaker.dk/radiostationer/mediamaker.php";
			if (_parameter==undefined) {
				_parameter="";
			}
			popUp = window.open(playerUrl+_parameter, "popUp", "top=0,left=" + ((screen.availWidth/2) - (_width / 2)) +",width="+_width+",height="+_height+",resizable=0,toolbar=0,scrollbars=0,location=0,status=0,menubar=0");
			popUp.focus();
			return popUp;
		}

