	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) {
		document.write(
			'<font color="red"><b>親フレームのドメインが違う為埋め込み再生できません、<a href="#" onclick="window.open(location.href);">こちら</a>をクリックして新しいウインドウで開いてください。</b></font><br />注意、ニコニコ動画のアカウント登録をしていない方は埋め込み再生は出来ません。'
		);
	}else{
	     for(i=0; i<document.getElementsByTagName("iframe").length; i++){	
	 	if (document.getElementsByTagName("iframe")[i].width == 500 && document.getElementsByTagName("iframe")[i].height == 175){
	 	  document.getElementsByTagName("iframe")[i].width = 0;
	        }
	        
	     }


	}


