function AC_FL_RunContent(movie, width, height){
	var dimensions=' width="'+width+'" height="'+height+'"> \n';
	var movieLine='<param name="movie" value="'+movie+'" />\n';
	var embedLine='<embed src="'+movie+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" width="'+width+'" height="'+height+'"></embed>';
								
	document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" \n');
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" \n');
	document.write(dimensions);
	document.write('<param name="allowScriptAccess" value="sameDomain" /> \n');
	document.write(movieLine);
	document.write('<param name="wmode" value="transparent" /> \n');
	document.write(embedLine);
	document.write('</object> \n');
}