function player_load(arquivo)

{

	OBplayer = GetObject('player');

	OBplayer.innerHTML = '';

	

	html = '<OBJECT classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="/" type="application/x-oleobject" width="320" height="275" standby="Loading Microsoft® Windows® Media Player components..." id="WMPlay"><PARAM NAME="FileName" VALUE="'+ arquivo +'"><PARAM NAME="ShowControls" VALUE="1"><PARAM NAME="ShowStatusBar" VALUE="0"><PARAM NAME="ShowDisplay" VALUE="0"><PARAM NAME="AutoStart" VALUE="true"><param name="AutoSize" value="0"><EMBED SRC="'+ arquivo +'" width="320" height="275" AutoStart="true" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" ShowStatusBar="0" ShowControls="1" filename="'+ arquivo +'" showdisplay="0" autosize="0"></EMBED></object>';

	

	OBplayer.innerHTML = html;

}

