// (c) nCode
// put in <head> section:
//   <script type="text/javascript" src="movie.js"></script>
// then instead of <object> tag write:
//   <script type="text/javascript">writeMovie('path/to/flash.swf', width, height);</script>

function writeMovie_wmp64(url, width, height) {
	document.write('<object width="'+width+'" height="'+height+'" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject">');
	document.write('  <param name="fileName" value="'+url+'">');
	document.write('  <param name="ShowControls" value="false">');
	document.write('  <embed type="application/x-mplayer2" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" width="'+width+'" height="'+height+'" src="'+url+'"></embed>');
	document.write('</object>');
	document.close();
}

function writeMovie(url, width, height) {
	document.write('<object 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" type="application/x-oleobject">');
	document.write('  <param name="URL" value="http://tab.xboxchallenge.nl'+url+'">');
	document.write('  <param name="windowlessVideo" value="true">');
	document.write('  <param name="uiMode" value="none">');
	document.write('  <embed type="application/x-mplayer2" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" width="'+width+'" height="'+height+'" src="http://tab.xboxchallenge.nl'+url+'" showcontrols="0"></embed>');
	document.write('</object>');
	document.close();
}

function writeMovieLoop(url, width, height) {
	document.write('<object 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" type="application/x-oleobject">');
	document.write('  <param name="URL" value="http://tab.xboxchallenge.nl'+url+'">');
	document.write('  <param name="windowlessVideo" value="true">');
	document.write('  <param name="uiMode" value="none">');
	document.write('  <param name="playCount" value="9999999">');
	document.write('  <embed type="application/x-mplayer2" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" width="'+width+'" height="'+height+'" src="http://tab.xboxchallenge.nl'+url+'" showcontrols="0" loop="true" autostart="true"></embed>');
	document.write('</object>');
	document.close();
}