EventManager.addEvent( window, 'load', function(){
	setWindowSize();
}, false );

function setWindowSize(){
	var bStd = (document.compatMode && document.compatMode=="CSS1Compat");
	if(document.getElementsByTagName('object')){
		swfWidth=document.getElementsByTagName('object')[0].getAttribute('width');
		swfHeight=document.getElementsByTagName('object')[0].getAttribute('height');
		//alert(winWidth+', '+winHeight);
		if(!document.all){
			gyapWidth=swfWidth-window.innerWidth;
			gyapHeight=swfHeight-window.innerHeight;
		}
		else{
			if(!bStd){
				gyapWidth=swfWidth-document.body.clientWidth;
				gyapHeight=swfHeight-document.body.clientHeight;
			}else{
				gyapWidth=swfWidth-document.documentElement.clientWidth;
				gyapHeight=swfHeight-document.documentElement.clientHeight;
			}
		}
		window.resizeBy(gyapWidth,gyapHeight)
	}
}