// JavaScript Document
//把如下代码放到Video调用处
/*
<script language=JavaScript>
	<!--
		Video('Videos_URL','938','697');
	//-->
</script>
*/
// onload='javascript:widthD=166;heightD=127;DrawImage(this);'
/*在head里写入如下js*/



	
	function Video(Videos_URL,Videos_width,Videos_height,AutoStart){
	document.write(" \
		 <object classid='CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6' width='"+Videos_width+"' height='"+Videos_height+"' id='mPlayer1'>\
		");
	if(AutoStart == "1"){
		document.write("<param name='AutoStart' value='1' />");
	}
	else {
		document.write("<param name='AutoStart' value='0' />");
	}
	document.write(" \
			<param name='UIMode' value='full' />\
			<param name='enableContextMenu' value='0' />\
			<param name='stretchToFit' value='true' />\
			<param name='URL' value='"+Videos_URL+"' />\
			<embed width='"+Videos_width+"' height='"+Videos_height+"' autostart='1' uimode='full' enablecontextmenu='0' stretchtofit='true' url='"+Videos_URL+"' src='1'> </embed>\
		</object>\
	");
	}

