Please see my issue on above page that I need to fix.
I've got a Vimeo video and a wmv video on this page with two buttons: one for flash, one for wmv player. The issue is that when the wmv button is clicked the video tries to load full screen within the pop-up box, and it is taking too long to load. On some browsers' versions it doesn't ever fully load. The flash player works with no problem. How can I get the wmv player working? Here's what I copied:
<div id="flash_box">
<iframe src="http://player.vimeo.com/video/16395534?byline=0&loop=1" width="800" height="450" frameborder="0"></iframe>
</div>
<div id="wmv_box">
<!--<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" name="mediaplayer1" showcontrols="true" ShowStatusBar="true" EnableContextMenu="false" autostart="true" width="600" height="360" loop="false" src="http://www.creativedesignresolutions.com/videos/Edmond.wmv" />-->
<!--<OBJECT ID="MediaPlayer" WIDTH="600" HEIGHT="360" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="http://www.creativedesignresolutions.com/videos/Edmond.wmv">
<PARAM name="autostart" VALUE="true">
<PARAM name="ShowControls" VALUE="true">
<param name="ShowStatusBar" value="false">
<PARAM name="ShowDisplay" VALUE="false">
<EMBED TYPE="application/x-mplayer2" SRC="http://www.creativedesignresolutions.com/videos/Edmond.wmv" NAME="MediaPlayer"
WIDTH="600" HEIGHT="360" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" autostart="1"> </EMBED>
</OBJECT>-->
<object ID="Player" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject"
width="600" height="360" hspace="0" vspace="2" standby="Loading...." VIEWASTEXT>
<param name="url" value="http://www.creativedesignresolutions.com/videos/Edmond.wmv">
<param name="AutoStart" value="false">
<param name="ShowTracker" value="true">
<param name="ShowControls" value="true">
<param name="ShowGotoBar" value="false">
<param name="ShowStatusBar" value="false">
<param name="AutoSize" value="false">
<param name="AnimationAtStart" value="false">
<param name="AutoRewind" value="false">
<param name="Balance" value="0">
<param name="EnableFullScreenControls" value="0">
<param name="BufferingTime" value="5">
<param name="Enabled" value="true">
<param name="enableContextMenu" value="true">
<param name="uiMode" value="full" >
<param name="EnableTracker" value="false">
<param name="InvokeURLs" value="true">
<param name="VideoBorderWidth" value="0">
<param name="VideoBorderColor" value="0">
<param name="Volume" value="100">
<param name="WindowlessVideo" value="false">
<embed id="Player1" type="application/x-mplayer2" width="600" vspace="2" height="360" src="http://www.creativedesignresolutions.com/videos/Edmond.wmv" pluginspage = "http://www.microsoft.com/windows/mediaplayer/" AutoStart="false" ShowTracker="true" ShowControls="true"
ShowGotoBar="false" ShowDisplay="false" ShowStatusBar="false" AutoSize="false" AudioStream="-1" AnimationAtStart="false"
AllowScan="true" Balance="0" BufferingTime="5" ClickToPlay="true" CursorType="0" CurrentMarker="0" DisplayMode="0"
DisplaySize="0" Enabled="true" EnableContextMenu="1" EnableFullScreenControls="1" EnablePositionControls="true"
EnableTracker="true" InvokeURLs="false" Mute="false" PlayCount="1" SendPlayStateChangeEvents="true" ShowCaptioning="false"
ShowAudioControls="true" ShowPositionControls="true" TransparentAtStart="true" VideoBorderWidth="0" VideoBorderColor="0"
Volume="100" WindowlessVideo="false"></embed></object>
</div>