function playTrailer(container_id, Hoehe, Breite)
{
		document.getElementById(container_id).innerHTML = "";    
		document.getElementById(container_id).innerHTML = "<div id=\"flvplay_"+container_id+"\">Du brauchst den Flash Player, um diesen Film abspielen zu k&ouml;nnen.<br><br>Du kannst Dir den Flash Player kostenlos herunterladen:<br><a href=\"http://get.adobe.com/de/flashplayer/\" target=\"_blank\"><img src=\"http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif\" width=\"112\" height=\"32\" border=\"0\"></a></div>"; 
		                                                   
		var s1 = new SWFObject(
		"http://www.mmxlive.com/flvs/flvplayer.swf",
		"pornplayer",
		Hoehe,
		Breite,
		"9");
			
		s1.addParam("allowfullscreen","false");
		s1.addParam("allowscriptaccess","always");
		s1.addParam("scalemode","showall");
		s1.addVariable("width",Hoehe);
		s1.addVariable("height",Breite);
		s1.addVariable("displayheight",Breite);
    s1.addVariable("file", "http://www.mmxlive.com/flvs/trailer/16_1.flv");
  
		s1.addVariable("enablejs",true);
		s1.addVariable("showdownload",false);
		s1.addVariable("usekeys",true);
		s1.addVariable("repeat","list");
		s1.addVariable("captionsScale", 0.3);
		s1.addVariable("backcolor","0xCDCDCD");
		s1.addVariable("frontcolor","0xFFFFFF");
		s1.addVariable("lightcolor","0xFFDD15");
		s1.addVariable("autostart", true);
		s1.addVariable("trailer",true);
		s1.addVariable("display", "block"); 
		s1.write("flvplay_"+container_id);
}


playTrailer('top_video_play', '310', '228');