function addVideo(nome,width,heightFF,heightIE){
		document.write('<object id="MediaPlayer1" width="'+width+'" height="'+heightIE+'" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" 	codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft® Windows® Media Player components..." type="application/x-oleobject" align="middle">')
		document.write('<param name="FileName" value="'+nome+'">')
    	document.write('<param name="ShowStatusBar" value="False">')
    	document.write('<param name="DefaultFrame" value="mainFrame">')
    	document.write('<embed type="application/x-mplayer2"')
		document.write('pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/"')
		document.write('src="'+nome+'" align="middle"')
		document.write('width="'+width+'"')
		document.write('height="'+heightFF+'"')
		document.write('defaultframe="rightFrame"')
		document.write('showstatusbar=true>')
    	document.write('</embed></object>')
  
  }
