function wri(txt) {
  document.write(txt);
}
function movieplay(path,moviename,moviewidth,movieheight) {
	htm = '';
	htm += '<object id="Object1" type="application/x-shockwave-flash" data="'+path+'player_flv_maxi.swf" width="'+moviewidth+'" height="'+movieheight+'">';
	htm += '<param name="movie" value="'+path+'player_flv_maxi.swf" />';
	htm += '<param name="allowFullScreen" value="true" />';
	htm += '<param name="wmode" value="opaque" />';
	htm += '<param name="allowScriptAccess" value="sameDomain" />';
	htm += '<param name="quality" value="high" />';
	htm += '<param name="menu" value="true" />';
	htm += '<param name="autoplay" value="true" />';
	htm += '<param name="autoload" value="true" />';
	htm += '<param name="FlashVars" value="flv='+path + moviename + '.flv&width='+moviewidth+'&height='+movieheight+'&configxml='+path+'moviestyle.xml" />';
	htm += '</object>';
	document.write(htm);
}
