/*
	IE embed fix scripts
	usage:
	<script type="text/javascript">
	writeQTEmbed('file.mov',300,50,true,true);
	</script>
*/

/* QUICKTIME */
function writeQTEmbed(src,width,height,autoplay,controller)
{
  document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
  document.write('<param name="src" value="' + src + '" />\n');
  document.write('<param name="autoplay" value="' + autoplay + '" />\n');
  document.write('<param name="controller" value="' + controller + '" />\n');
  document.write('<param name="type" value="video/quicktime" />\n');
  document.write('<embed src="' + src + '" width="' + width + '" height="' + height + '" autoplay="' + autoplay + '" controller="' + controller + '" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime"></embed>\n');
  document.write('</object>\n');
}
function writeQTVidEmbed(src,width,height,autoplay,controller)
{
	document.write(' <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
	document.write('	<param name="qtsrc" value="' + src + '" />\n');
	document.write('	<param name="src" value="/images/PleaseWait.mov" />\n');
	document.write('	<param name="autoplay" value="' + autoplay + '" />\n');
	document.write('	<param name="controller" value="' + controller + '" />\n');
	document.write('	<param name="type" value="audio/mp4" />\n');
	document.write('	<embed src="/images/PleaseWait.mov" qtsrc="' + src + '" width="' + width + '" height="' + height + '" autoplay="' + autoplay + '" controller="' + controller + '" pluginspage="http://www.apple.com/quicktime/download/" type="audio/mp4"></embed>\n');
	document.write('</object>\n');
}

/* WINDOWS MEDIA */
function writeWMEmbed(src,width,height,autoplay,controller)
{
  document.write('<object id="Player" width="' + width + '" height="' + height + '" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">');
  document.write('<param name="autoStart" value="' + autoplay + '" />');
  document.write('<param name="URL" value="' + src + '" />');
  document.write('<embed type="application/x-mplayer2" name="MediaPlayer" src="' + src + '" width="' + width + '" height="' + height + '" border="0" autostart="' + autoplay + '" scale="ASPECT" controls="' + controller + '" hspace="0" vspace="0" />');
  document.write('</embed></object>');
}

/* REAL */
function writeRealEmbed(src,width,height,autoplay,controller, console)
{
	document.write('<object id="RVOCX" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA"  width="' + width + '" height="' + height + '" >');
	document.write('<param name="SRC" value="' + src + '" />');
	document.write('<param name="CONTROLS" value="' + controller + '" />');
	document.write('<param name="CONSOLE" value="' + console + '" />');
	document.write('<param name="AUTOSTART" value="' + autoplay + '" />');
	document.write('<embed src="' + src + '" width="' + width + '" height="' + height + '" nojava="true" controls="' + controller + '" console="' + console + '" autostart="' + autoplay + '"></embed>');
	document.write('</object>');
}

function writeRealVidEmbed(src,width,height,autoplay,controller,console)
{
	document.write('<object id=RVOCX classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width=320 height=240>');
	document.write('<param name="SRC" value="' + src + '" />');
	document.write('<param name="CONTROLS" value="ImageWindow" />');
	document.write('<param name="CONSOLE" value="one" />');
	document.write('<param name="AUTOSTART" value="true" />');
 	document.write('<embed src="' + src + '" width=320 height=240 nojava=true controls=ImageWindow console=one autostart=true>');
	document.write('</object>');
	document.write('<br />');
	document.write('<object id="RVOCX" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width=[$Width] height=[$Height]>');
	document.write('<param name="CONTROLS" value="ControlPanel" />');
	document.write('<param name="CONSOLE" value="one" />');
	document.write('<embed src="plugin.rpm" width=350 height=36 nojava=true controls=ControlPanel console=one>');
	document.write('</object>');
}


