function flash(url,w,h){
//	var str = "<embed src='"+ url +"' width='"+ w +"' height='"+ h +"'  wmode = 'transparent'></embed>"
	var str = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='"+ w + "' height='"+ h + "' id='flash_movie' align='middle'>";
	str += "<param name='allowScriptAccess' value='sameDomain' />";
	str += "<param name='allowFullScreen' value='false' />";
	str += "<param name='movie' value='"+ url +"' />";
	str += "<param name='quality' value='high' />";
	str += "<param name='wmode' value='transparent' />";
	str += "<embed src='"+ url +"' quality='high' bgcolor='#ffffff'  width='"+ w +"' height='"+ h +"'  wmode = 'transparent' align=middle allowScriptAccess=sameDomain allowFullScreen=false type=application/x-shockwave-flash pluginspage=http://www.macromedia.com/go/getflashplayer />";
	str += "</object>";
	document.write( str );
}



function mini_play(url,w,h){
	var str = "<OBJECT classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' id='miniplay' type='application/x-oleobject' width="+w+" height="+h+">";
	str += "<PARAM NAME='FileName' VALUE="+url+">";
	str += "<PARAM NAME=ShowControls VALUE=0>";
	str += "<PARAM NAME=ShowGotoBar VALUE=0>";
	str += "<PARAM NAME=ShowStatusBar VALUE=0>";
	str += "<PARAM NAME=ControlType VALUE=0>";
	str += "<PARAM NAME=AutoStart value=1>";
	str += "<PARAM NAME=ShowDisplay value=0>";
	str += "<PARAM NAME=DisplayBackColor VALUE=20720820>"; //26739119
	str += "<PARAM NAME=DisplayForeColor VALUE=16777215>";
	str += "<PARAM NAME=Enabled VALUE=true> ";
	str += "</OBJECT>";
	document.write( str );
}


function vod_play(url,w,h){
	var str = "<embed src='"+ url +"' width='"+ w +"' height='"+ h +"'  wmode = 'transparent'></embed>"
	document.write( str );
}
