/**
 * Toho Cinemas Charactor Rnking Blog Parts
 */
var TohoCinemas = {
	blog_parts_url : 'http://www.tohotheater.jp/campaign/blog/toho_movie_award.swf',
	target_id : 'toho_cinemas',
	flashvars_name : 'charactor',
	width : 160,
	height : 320,
	color : '#ffffff',
	write : function(id){
		var tag = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45" width="'+ this.width +'" height="'+ this.height +'">' +
		'<param name="movie" value="' + this.blog_parts_url + '" />' +
		'<param name="quality" value="high" />' +
		'<param name="wmode" value="opaque" />' +
		'<param name="allowScriptAccess" value="always" />' +
		'<param name="bgcolor" value="'+ this.color +'" />' +
		'<param name="flashvars" value="'+this.flashvars_name+'=' + id + '" />' +
		'<embed src="' + this.blog_parts_url + '" flashvars="'+this.flashvars_name+'=' + id + '" quality="high" wmode="opaque" allowScriptAccess="always" bgcolor="'+ this.color +'" width="'+ this.width +'" height="'+ this.height +'" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
		'</object>';
		document.getElementById(this.target_id).innerHTML = tag;
		return null;
	}
};

document.write('<div id="toho_cinemas">Toho Cinemas movie award</div>');