<!-- // START SCRIPT


// FOR A 320 X 240 MOVIE YOU CAN USE 320 x 305 or 269 x 266
// CONTROLS ARE 65 HIGH


var width	= "320"			// PLAYER WIDTH
var height	= "305"			// PLAYER HEIGHT
var movieW	= "video2.wmv"		// WIN MEDIA MOVIE SOUND FILE NAME



// WINDOWS MEDIA PLAYER

// COPYRIGHT 2008 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE




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="true">');
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"></EMBED></OBJECT><br>');


//-->
