// This prevents an inappropriate ActiveX warning on Internet
//  Explorer that came about after a bad patch they issued,
//  and later retracted.
// Put this in the target web page's HEAD section:
//   <SCRIPT lang="Javascript1.1" SRC="./dynembed.js"><SCRIPT>
// Put this in the target web page's body onload tag:
//	 onload="javascript:activateMoviePlayer();"
function activateMoviePlayer()
{

	var divElem = document.getElementById("movie_player");
	
	if (!divElem)
	{
		alert("Could not find movie player area.");
	}
	else
	{
		divElem.innerHTML = 
			'<embed src="http://media.revver.com/broadcast/26691/video.mov/13543" pluginspage="http://www.apple.com/quicktime/download/" scale="tofit" kioskmode="False" qtsrc="http://media.revver.com/broadcast/26691/video.mov/13543" cache="False" height="240" width="320" controller="True" type="video/quicktime" autoplay="False"></embed>';	
	}
}

