function embedMediaPlayer(id, width, height, url, style, url2) {
	/*document.write('<object id="'+id+'" width="'+width+'" height="'+height+'" classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" type="application/x-oleobject" STANDBY="Loading Windows Media Player components..." style="'+style+'">');
	document.write('<param name="AutoRewind" value="False" />');
	document.write('<param name="Autostart" value="True" />');
	document.write('<param name="ShowControls" value="false" />');
	document.write('<param name="ShowStatusBar" value="False" />');
	document.write('<param name="showdisplay" value="0" />');
	document.write('<param name="ControlType" value="0" />');
	document.write('<param NAME="Loop" VALUE="False">');
	document.write('<param NAME="URL" VALUE="'+url+'">');
	document.write('<embed url="'+url+'" type="video/x-ms-asf-plugin" pluginspage="http://www.microsoft.com/windows/mediaplayer/download/default.asp" width="'+width+'" height="'+height+'" autostart="True" showcontrols="false" showstatusbar="false" autorewind="false" showdisplay="0" loop="0"/>');
	document.write('</object >');*/

	document.write('<object id="'+id+'" 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 Microsoft Windows Media Player components..." type="application/x-oleobject" style="'+style+'">');
	document.write('<param name="fileName" value="'+url+'">');
	document.write('<param name="UiMode" value="full">');
	document.write('<param name="URL" value="'+url+'">');
	document.write('<param name="animationatStart" value="0">');
	document.write('<param name="transparentatStart" value="0">');
	document.write('<param name="autoStart" value="1">');
	document.write('<param name="stretchToFit" value="1">');
	document.write('<param name="ShowControls" value="1">');
	document.write('<param name="ShowDisplay" value="0">');
	document.write('<param name="ShowStatusBar" value="0">');
	document.write('<param name="loop" value="0">');
	document.write('<embed type="application/x-mplayer2" name="'+id+'" src="'+url2+'" width="'+width+'" height="'+height+'" autorewind="0" stretchToFit="1" showdisplay="0" showstatusbar="0" autosize="1" showcontrols="1" autostart="1"></embed>');
	document.write('</object>');
	
}

function embedQuickTime(id, width, height, url, style) {
	/*document.write('<object id="'+id+'" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+width+'" height="'+height+'" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0" style="'+style+'">');
	document.write('<param name="controller" value="false">');
	document.write('<param name="type" value="video/quicktime">');
	document.write('<param name="loop" value="false">');
	document.write('<param name="autoplay" value="true">');
	document.write('<param name="bgcolor" value="#ffffff">');
	document.write('<param name="target" value="myself">');
	document.write('<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html">');
	document.write('<param name="src" value="'+url+'">');
	document.write('<embed width="'+width+'" height="'+height+'" controller="false" target="myself" autoplay="false" src="'+url+'" loop="false" type="video/quicktime" bgcolor="#ffffff" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html"/>');
	document.write('</object>');*/

	document.write('<object id="'+id+'" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+width+'" height="'+height+'" codebase="http://www.apple.com/qtactivex/qtplugin.cab" style="'+style+'">');
	document.write('<param name="src" value="'+url+'"/>');
	document.write('<param name="autoplay" value="true"/>');
	document.write('<param name="controller" value="true"/>');
	document.write('<param name="loop" value="false/">');
	document.write('<param name="scale" value="ASPECT"/>');
	document.write('<param name="bgcolor" value="#000000">');
	document.write('<embed type="video/quicktime" name="'+id+'" EnableJavaScript="true" src="'+url+'" width="'+width+'" height="'+height+'" autoplay="true" scale="ASPECT" controller="true" loop="false" bgcolor="#000000" pluginspage="http://www.apple.com/quicktime/download/">');
	document.write('</embed>');
	document.write('</object>');

}



