<!-- // START SCRIPT




var width	= "500"			// PLAYER WIDTH
var height	= "400"			// PLAYER WIDTH
var movieW	= "Monster.wmv"		// WIN MEDIA MOVIE SOUND FILE NAME



document.write('<object id="player" name="player" width="'+width+'" height="'+height+'" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Media Player..." type="application/x-oleobject">');
document.write('<param name="URL" value="'+movieW+'">');
document.write('<param name="autoStart" value="false">');
document.write('<param name="loop" value="false">');
document.write('<PARAM name="uiMode" value="full">');
document.write('<PARAM name="volume" value="100">');
document.write('<embed type="application/x-mplayer2" src="'+movieW+'" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" showcontrols="true" width="'+width+'" height="'+height+'" autostart="true" loop="false" volume="-1">');
document.write('</EMBED>');
document.write('</OBJECT><br>');


//-->

