How can I display a custom "Unity Web Player Install Now" image?

The image I’d like to display looks like this…

http://battleball.schellgames.com/images/unity_install.png

In the original code, I modified this…

<div id="unityPlayer">
			<div class="missing">
				<a href="http://unity3d.com/webplayer/" title="Unity Web Player. Install now!">
					<img alt="Unity Web Player. Install now!" src="http://webplayer.unity3d.com/installation/getunity.png" width="193" height="63" border="0" />
				</a>
			</div>
		</div>

…to this…

<div id="unityPlayer">
			<div class="missing">
				<a href="http://unity3d.com/webplayer/" title="Unity Web Player. Install now!">
					<img alt="Unity Web Player. Install now!" src="http://battleball.schellgames.com/images/unity_install.png" width="760" height="456" border="0" />
				</a>
			</div>
		</div>

I noticed that the image from…

http://webplayer.unity3d.com/installation/getunity.png

is shown regardless because of…

I know I could create a copy of http://webplayer.unity3d.com/download_webplayer-3.x/3.0/uo/UnityObject.js but this could change on your side so probably would not be the optimal solution. I was wondering if there is a good way to do this?

Never mind, I just solved this with divs.

Would you be kind enough to share your html on this? I’m not a html expert and am finding it hard to add my own image for the install. It would help me out a lot.

Thanks.

I am also interested.

me too