function videoaovivo(url)
{

	var html=
                   '<OBJECT id=MediaPlayer codeBase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715 type=application/x-oleobject height=286 standby="Loading Microsoft Windows Media Player components..." width=320 align=middle classid=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6>' + '\n' +
                            '<PARAM NAME="URL" VALUE="'+ url +'">' + '\n' +
                            '<PARAM NAME="rate" VALUE="1">' + '\n' +
                            '<PARAM NAME="balance" VALUE="0">' + '\n' +
                            '<PARAM NAME="currentPosition" VALUE="86.819375">' + '\n' +
                            '<PARAM NAME="defaultFrame" VALUE="">' + '\n' +
                            '<PARAM NAME="playCount" VALUE="1">' + '\n' +
                            '<PARAM NAME="autoStart" VALUE="-1">' + '\n' +
                            '<PARAM NAME="currentMarker" VALUE="0">' + '\n' +
                            '<PARAM NAME="invokeURLs" VALUE="-1">' + '\n' +
                            '<PARAM NAME="baseURL" VALUE="">' + '\n' +
                            '<PARAM NAME="volume" VALUE="50">' + '\n' +
                            '<PARAM NAME="mute" VALUE="0">' + '\n' +
                            '<PARAM NAME="uiMode" VALUE="full">' + '\n' +
                            '<PARAM NAME="stretchToFit" VALUE="0">' + '\n' +
                           ' <PARAM NAME="windowlessVideo" VALUE="0">' + '\n' +
                            '<PARAM NAME="enabled" VALUE="-1">' + '\n' +
                            '<PARAM NAME="enableContextMenu" VALUE="-1">' + '\n' +
                            '<PARAM NAME="fullScreen" VALUE="0">' + '\n' +
                            '<PARAM NAME="SAMIStyle" VALUE="">' + '\n' +
                            '<PARAM NAME="SAMILang" VALUE="">' + '\n' +
                            '<PARAM NAME="SAMIFilename" VALUE="">' + '\n' +
                            '<PARAM NAME="captioningID" VALUE="">' + '\n' +
                            '<PARAM NAME="enableErrorDialogs" VALUE="0">' + '\n' +
                            '<PARAM NAME="_cx" VALUE="7408">' + '\n' +
                            '<PARAM NAME="_cy" VALUE="7408">' + '\n' +
                            '<embed	src="'+ url +'" width=320 height=286 align="middle" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows/windowsmedia/"showcontrols=1	showdisplay=0	showstatusbar=1> </embed>' + '\n' +
							'</OBJECT>'
							
	//alert(autostart);
	var conteudo=document.getElementById('aovivo')
	conteudo.innerHTML  = html;
	
}							