﻿
window.onload=function(){
		if(document.all){
		var w=document.body.clientHeight;
		if(document.body.clientWidth<=800){
		document.getElementById("ht").style.overflowY="auto";
		document.getElementById("flashArea_wrapper").style.width="800px";
		document.getElementById("flashArea_wrapper").style.height="480px";
		var size3=(800-document.getElementById("client").clientWidth)/2;
		window.scrollTo(size3,0);
		}else{
		document.getElementById("ht").style.overflowY="hidden";
		document.getElementById("flashArea_wrapper").style.width="100%";
		document.getElementById("flashArea_wrapper").style.height="100%";
		}
		//ie以外のブラウザ
	}else{
	var w=window.innerHeight;
	if(window.innerWidth<=800){
		document.getElementById("flashArea_wrapper").style.width="800px";
		document.getElementById("flashArea_wrapper").style.height="480px";
		var size3=(800-window.innerWidth)/2;
		window.scrollTo(size3,0);
							
	}else{
		document.getElementById("flashArea_wrapper").style.width="100%";
		w=(w)+"px";
		document.getElementById("flashArea_wrapper").style.height=w;
	}
	}
	}
	
	
	
window.onresize=function(){
	if(document.all){
		if(document.body.clientWidth<=800){
		document.getElementById("ht").style.overflowY="auto";
		document.getElementById("flashArea_wrapper").style.width="800px";
		document.getElementById("flashArea_wrapper").style.height="480px";
		var size3=(800-document.getElementById("client").clientWidth)/2;
		window.scrollTo(size3,0);
		}else{
		document.getElementById("ht").style.overflowY="hidden";
		document.body.style.position="static";
		document.getElementById("flashArea_wrapper").style.width="100%";
		document.getElementById("flashArea_wrapper").style.height="100%";
		}
		//ie以外のブラウザ
	}else{
	var w=window.innerHeight;
	if(window.innerWidth<=800){
		document.getElementById("flashArea_wrapper").style.width="800px";
		document.getElementById("flashArea_wrapper").style.height="480px";
		var size3=(800-window.innerWidth)/2;
		window.scrollTo(size3,0);
							
	}else{
		document.getElementById("flashArea_wrapper").style.width="100%";
		w=(w)+"px";
		document.getElementById("flashArea_wrapper").style.height=w;
	}
	}
}

