		  function renderPlayer(divId, filePath, contentId ){
			var d = document.getElementById(divId);

			var text;
			text = '<img src="http://stats.break.com/invoke.gif?c=' +contentId+ '"  width="0" height="0" border="0" />';
			text += '<object id="MediaPlayer1" 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" width="640" height="366">';
			text += '<param name="fileName" value="' +filePath+ '" />';
			text += '<param name="animationatStart" value="true" />';
			text += '<param name="transparentatStart" value="true" />';
			text += '<param name="autoStart" value="true" />';
			text += '<param name="showControls" value="false" />';
			text += '<param name="Volume" value="-10" />';
			text += '<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' +filePath+ '" width="640" height="366" autostart="1" showcontrols="0" volume="-20" >';
			text += '</embed>';
			text += '</object>';
			d.innerHTML = text;
		  }
			
			function renderPlayerFlashShockwave(divId, filePath, contentId ){
			var d = document.getElementById(divId);

			var text;
			text = '<img src="http://stats.break.com/invoke.gif?c=' +contentId+ '"  width="0" height="0" border="0" />';
			text += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" standby="Loading components..." width="640" height="366">';
			text += '<param name="movie" value="' +filePath+ '" />';
			text +=	'<param name="quality" value="high" />';
			text += '<embed src="' +filePath+ '" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash" width="640" height="366">';
			text += '</embed>';
			text += '</object>';
			d.innerHTML = text;
		  }