//ÇÃ·¡½Ã 
function setFlash(src, w, h) {
	var Flash_html = "";
	Flash_html += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" id="param" width="'+w+'" height="'+h+'">';
	Flash_html += '<param name="movie" value="'+src+'">';
	Flash_html += '<param name="quality" value="high">';
	Flash_html += '<param name="wmode" value="transparent">';
	Flash_html += '<param name="swliveconnect" value="true">';
	Flash_html += '<embed src="'+src+'" quality=high bgcolor="#ffffff" width="'+w+'" height="'+h+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/embed>';
	Flash_html += '</object>';
	document.write(Flash_html);
}

function setMedia(src, w, h) {
	var Media_html = "";

	Media_html += '<object id = "MediaPlayer"  classid = "CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase = "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version = 6,4,5,715" width = '+w+' height = '+h+' standby = "Loading Microsoft Windows Media Player components..." type = "application/x-oleobject" class="u1">';
	Media_html += '<param name = "FileName"  value = "'+src+'">';
    Media_html += '<param name = "TransparentAtStart" value = "1">';
    Media_html += '<param name = "AutoStart"          value = "1">';
    Media_html += '<param name = "AnimationatStart"   value = "1">';
    Media_html += '<param name = "AutoResize"         value = "0">';
    Media_html += '<param name = "ShowControls"       value = "0">';
    Media_html += '<param name = "ShowStatusBar"      value = "0">';
    Media_html += '<param name = "autoSize"           value = "0">';
    Media_html += '<param name = "displaySize"        value = "0">';
    Media_html += '<param name = "EnableContextMenu"	 value = "0">';
    Media_html += '</object>';

	document.write(Media_html);
}
