function Resize(){
	var minW=960;//swfの最小サイズ
	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("wrap").style.width= minW+"px";
		
	}else{
		document.getElementById("wrap").style.width = currentWidth+"px";
		
	}
}
