var flashW = 950;
var flashH = 650;

function checkSize() {
	//
	var ua = navigator.userAgent;       // ユーザーエージェント
	var nWidth, nHeight;                   // サイズ
	var nHit = ua.indexOf("MSIE");     // 合致した部分の先頭文字の添え字
	var bIE = (nHit >=  0);                 // IE かどうか
	var bVer6 = (bIE && ua.substr(nHit+5, 1) == "6");  // バージョンが 6 かどうか
	var bStd = (document.compatMode && document.compatMode=="CSS1Compat"); // 標準モードかどうか
	if (bIE) {
		if (bVer6 && bStd) {
			nWidth = document.documentElement.clientWidth;
			nHeight = document.documentElement.clientHeight;
		} else {
			nWidth = document.body.clientWidth;
			nHeight = document.body.clientHeight;
		}
	} else {
		nWidth = window.innerWidth;
		nHeight = window.innerHeight;
	}
	//
	if(nWidth < flashW){
		$("flashArea").style.width = flashW+"px";
	}else{
		$("flashArea").style.width = "100%";
	}
	if(nHeight < flashH){
		$("flashArea").style.height = flashH+"px";
	}else{
		$("flashArea").style.height = "100%";
	}
}
