if (typeof Nicovideo == 'undefined') {
	Nicovideo = new Object();
}

Nicovideo.version = '1.4.4';
Nicovideo.url = 'http://www.nicovideo.jp/';
Nicovideo.playerUrl = 'http://ext.nicovideo.jp/swf/player/thumbwatch.swf?ts=1279687196';

if (typeof Nicovideo.Video == 'undefined') {
	Nicovideo.Video = function (video) {
		if (video) {
			for (var key in video) {
				this[key] = video[key];
			}
		}
	};
	Nicovideo.Video.create = function (video) {
		if (typeof this.__cache == "undefined") this.__cache = {};
		var v = this.__cache[video.v];
		if (!v) v = this.__cache[video.v] = new this(video);
		return v;
	};
	Nicovideo.Video.prototype = {
		getPlayURL: function () {
			return Nicovideo.url + 'watch/' + this.v;
		},
		getShortTitle: function () {
			return this.title.substring(0, 60) + 
				(this.title.length > 60 ? "..." : "");
		},
		getShortDescription: function () {
			return this.description.substring(0, 60) + 
				(this.description.length > 60 ? "..." : "");
		}
	};
}
if (typeof Nicovideo.MiniPlayer == 'undefined') {
	Nicovideo.MiniPlayer = function (video, vars, width, height) {
		this.id          = Nicovideo.MiniPlayer.allocateId(this);
		this.video       = video;
		this.attributes  = {};
		this.parameters  = {};
		this.variables   = vars || {};
		this.width       = width  || '485';
		this.height      = height || '385';
	};
	Nicovideo.MiniPlayer.prototype = {
		defaultAttributes: {},
		defaultParameters: {
			allowScriptAccess: 'always',
			bgcolor: '#000000',
			quality: 'high'
		},
		defaultVariables: {
			thumbWatch: 1,
			playerTimestamp: '1280468204',
			player_version_xml: '1280495323',
			player_info_xml: '1280322303'
		},


		_merge: function () {
			var o = {};
			for (var i = 0, len = arguments.length; i < len; i++) {
				var arg = arguments[i];
				if (typeof arg != "object") continue;
				for (var key in arg) {
					o[key] = arg[key];
				}
			}
			return o;
		},
		getHTML: function () {
			var id = this.id,
				video = this.video,
				attrs = this._merge(this.defaultAttributes, this.attributes),
				params = this._merge(this.defaultParameters, this.parameters),
				vars = this._merge(
					this.defaultVariables,
					{
						v: video.v,
						videoId: video.id,
						thumbTitle: video.getShortTitle(),
						thumbDescription: video.getShortDescription(),
						thumbImage: video.thumbnail,
						thumbWidth: this.width,
						thumbHeight: this.height,
						mylist_counter: video.mylistCount.toString()
							.replace(/(\d)(?=(?:\d{3})+$)/g, "$1,"),
						movie_type: video.movieType,
						wv_id: video.id
					},
					this.variables
				);

			var flashvars = [];
			for (var key in vars) {
				flashvars.push(key + '=' + encodeURIComponent(vars[key]));
			}
			params.flashvars = flashvars.join("&");

			var html;
			if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) {
				html =
					'<embed type="application/x-shockwave-flash"'
					+ ' id="' + id + '"'
					+ ' name="' + id + '"'
					+ ' src="' + Nicovideo.playerUrl + '"'
					+ ' width="' + this.width  + '"'
					+ ' height="' + this.height + '"'
					;
				for (var key in params) {
					html += ' ' + key + '="' + params[key] + '"';
				}
				for (var key in attrs) {
					html += ' ' + key + '="' + attrs[key] + '"';
				}
				html += ' />';
			} else {
				html =
					'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
					+ ' id="' + id + '"'
					+ ' name="' + id + '"'
					+ ' width="' + this.width + '"'
					+ ' height="' + this.height + '"'
					;
				for (var key in attrs) {
					html += ' ' + key + '="' + attrs[key] + '"';
				}
		 		html += '>';
				html += '<param name="movie" value="' + Nicovideo.playerUrl + '" />';
				for (var key in params) {
					html += '<param name="' + key + '" value="' + params[key] + '" />';
				}
				html += '</object>';
			}

			return html;
		},
		write: function (id) {
			if (id === undefined) {
				document.write(this.getHTML());
			} else if (typeof id == "string") {
				var el = document.all ? document.all[id] : document.getElementById(id);
				if (el) el.innerHTML = this.getHTML();
			} else if (id) {
				id.innerHTML = this.getHTML();
			}
		}
	};

	Nicovideo.MiniPlayer.players = {};
	Nicovideo.MiniPlayer.playerCount = 0;
	Nicovideo.MiniPlayer.allocateId = function (player) {
		var id = 'external_nico_' + (this.playerCount++);
		this.players[id] = player;
		return id;
	};

	if (document.all && !window.opera) {
		window.attachEvent("onbeforeunload", function () {
			window.attachEvent("onunload", function () {
				for (var i = 0, l = Nicovideo.MiniPlayer.playerCount; i < l; i++) {
					var id = 'external_nico_' + i, el = document.all ? document.all[id] : document.getElementById(id);
					if (el && el.parentNode) {
						for (var key in el) {
							if (typeof el[key] == 'function')
								el[key] = null;
						}
						el.parentNode.removeChild(el);
					}
				}
			});
		});
	}


}

(function () {
	var b = true;
	try {
		var w = window.parent, self = window.self;
		while (w && w != self) {
			if (w.location.host != self.location.host) {
				b = false;
				break;
			}
			if (w === w.parent) break;
			w = w.parent;
		}
	} catch (e) {
		b = false;
	}

	if (!b) {
		Nicovideo = undefined;
		document.write(
			'<p><a href="http://www.nicovideo.jp/watch/sm500873" target="_blank">\u7d44\u66f2\u300e\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u300f </a></p>'
		);
		return;
	}

	var video = Nicovideo.Video.create({
		v: 'sm500873'
	,	id: 'sm500873'
	,	title: '\u7d44\u66f2\u300e\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u300f '
	,	description: '\u30cb\u30b3\u30cb\u30b3\u52d5\u753b(\u03b2\u30fb\u03b3)\u3067\u4eba\u6c17\u306e\u3042\u3063\u305f\u66f2\u306a\u3069\u3092\u7e4b\u3044\u3067\u3072\u3068\u3064\u306e\u66f2\u306b\u3057\u3066\u307f\u307e\u3057\u305f(2\u5ea6\u76ee)\u3002\u516833\u66f2\u3002\u203b\u591a\u304f\u306e\u65b9\u3092\u8aa4\u89e3\u3055\u305b\u3066\u3057\u307e\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u304c(\u7533\u3057\u8a33\u306a\u3044\u3067\u3059)\u3001\u53b3\u5bc6\u306b\u306f\u300c\u7d44\u66f2\u300d\u3067\u306f\u306a\u304f\u300c\u30e1\u30c9\u30ec\u30fc\u300d\u3067\u3059\u3002\u300c\u7d44\u66f2\u3068\u3044\u3046\u540d\u524d\u306e\u30e1\u30c9\u30ec\u30fc\u300d\u3060\u3068\u601d\u3063\u3066\u304f\u3060\u3055\u3044\u3002mylist\/1535765user\/145217'
	,	thumbnail: 'http:\/\/tn-skr2.smilevideo.jp\/smile?i=500873'
	,	postedAt: new Date('2007\/06\/23 18:27:06 +0900')
	,	length: 647
	,	viewCount: 6652866
	,	mylistCount: 114555
	,	commentCount: 4145134
	,	movieType: 'flv'
	,	isDeleted: false	,	isMymemory: false	});
	var player = new Nicovideo.MiniPlayer(video, {
		thumbPlayKey: '1280621414.0.SsDUEd_AXaL7ToDGEqtfgtVQxPY.'
	,	wv_title: '\u7d44\u66f2\u300e\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u300f '
	,	has_owner_thread: '1'
	}, '', '');
	player.write();
})();

