function Resize(){
	var minW=950;
	var currentWidth;
	// IE以外。
	if (!document.all && (document.layers || document.getElementById)) {
		currentWidth=window.innerWidth;
		}
	// ウィンドウズIE 6・標準モード。
	else if (document.getElementById && (document.compatMode=='CSS1Compat')) {
		currentWidth=document.documentElement.clientWidth;
		}
	// その他のIE。
	else if (document.all) {
		currentWidth=document.body.clientWidth;
	}
	if(currentWidth<minW){
		document.getElementById("mainFla").style.width= minW+"px";
	}else{
		document.getElementById("mainFla").style.width = "100%";
	}
}

