This code work on the windows web player and succesfully changes the logo shown when loading the unity web player. But on OSX this isn’t working, it’s still showing an unity icon. How do I change the icon on the osx web player?

	<!--
	
	var params = {
		backgroundcolor: "000000",
		bordercolor: "000000",
		textcolor: "000000",			
		logoimage: "icon.jpg",
		progressbarimage: "",
		progressframeimage: "",
		disableContextMenu: true,
		disableFullscreen: true					
	};		
	
	
	function GetUnity() {
		if (typeof unityObject != "undefined") {
			return unityObject.getObjectById("unityPlayer");
		}
		return null;
	}
	if (typeof unityObject != "undefined") {
		unityObject.embedUnity("unityPlayer", "web.unity3d", 1024, 768,params);
		
	}

Alright like two seconds after posting that I realized it is empty progressbarimages parameters that are messing it up on osx.