
function ShowVideoEmbeded(MyVideoSource, MyVideoWidth, MyVideoHeight)
{
	document.write('<div style="border: none;">')
	document.write('<object id="mediaPlayer" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="' + MyVideoHeight + '" standby="Loading Microsoft Windows Media Player components..." width="' + MyVideoWidth + '" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">')
	document.write('<param value="http://www.abc-animal.com/video/' + MyVideoSource + '.wmv" name="fileName" />')
	document.write('<param value="true" name="animationatStart" />')
	document.write('<param value="true" name="transparentatStart" />')
	document.write('<param value="true" name="autoStart" />')
	document.write('<param value="false" name="showControls" />')
	document.write('<param value="true" name="loop" />')

	document.write('<EMBED type="application/x-mplayer2"')
	document.write('pluginspage="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"')
	document.write('id="mediaPlayer" name="fileName" displaysize="4" autosize="0"')
	document.write('bgcolor="darkblue" showcontrols="0" showtracker="0"')
	document.write('showdisplay="0" showstatusbar="0" videoborder3d="1" width="' + MyVideoWidth + '" height="' + MyVideoHeight + '" ')
	document.write('src="http://www.abc-animal.com/video/' + MyVideoSource + '.wmv" autostart="1" designtimesp="5311" loop="1"></EMBED>')

	document.write('</object>')
	document.write('</div>')
}


