google.load("swfobject", "2.1");
function createPlayer(thePlaceholder, thePlayerId, theFile, theAutostart,dispwidth) {
	if(!dispwidth){
		var dispwidth= 340;
	}
	var dispheight=parseInt(dispwidth) * 9 / 16;
	var flashvars = {
	file:'http://fc.dai.co.jp/uploads/movies/'+theFile,
	autostart:theAutostart,
	playlist:'bottom',
	displayheight:dispheight // 270 or 360
	}
	var params = {
	allowfullscreen:"true",
	allowscriptaccess:"always"
	}
	var attributes = {
	id:thePlayerId,
	name:thePlayerId
	}
	var html ="<div style='width:" + dispwidth + "px;";
	if(dispwidth > 268){
		html +="background:#000 url(http://fc.dai.co.jp/images/fc_show10/player/header_01.gif) no-repeat;background-position:right top";
	}else{
		html +="background-color:#000;";
	}
	html += "'>";
	html += "<strong><a href='http://fc.dai.co.jp' target='_blank'><img src='http://fc.dai.co.jp/images/fc_show10/player/header_02.gif' alt='フランチャイズWEBリポート、独立起業開業FC情報' /></a></strong></div>";

	swfobject.embedSWF("http://fc.dai.co.jp/flash/old_player.swf", thePlaceholder, dispwidth, dispheight, "7", false, flashvars, params, attributes);
	document.write(html);
}
