var screenW;		//幅
var screenH;	//高さ
function winopen(){
	screenW = 0;
	screenH = 0;
	screenW = screen.width;
	screenH = screen.height+30;
	/*ブラウザチェック*/
	var ver = BrowserCheck();

		window.open("flash.html","flash","width="+screenW+",height="+screenH+",top=0,left=0,resizable=1,toolbar=0");
}

function windowResize(){
	screenW = 0;
	screenH = 0;
	screenW = screen.width;
	screenH = screen.height+30;
	/*ブラウザチェック*/
	var ver = BrowserCheck();

		window.resizeTo(screenW,screenH);
}

function BrowserCheck(){
	var ua = navigator.userAgent;
	ua = ua.toUpperCase();
	if(ua.indexOf("SAFARI")>-1)return "Safari";
	if(ua.indexOf("FIREFOX")>-1)return "Firefox";
	if(ua.indexOf("OPERA")>-1)return "Opera";
	if(ua.indexOf("NETSCAPE")>-1)return "Netscape";
	if(ua.indexOf("MSIE")>-1)return "IE";
	if(ua.indexOf("MOZILLA/4")>-1)return "Netscape";
	if(ua.indexOf("MOZILLA")>-1)return "Mozilla";
	return null;
}
