swfobject.embedSWF('loading.swf', 'flashcontent', '100%', '100%','9.0.0', 'js/expressinstall.swf');
	$(function(){
		function aa(){
		var minw=1000; <!--設定最小寬度   1/3-->
		var minh=600;  <!--設定最小高度   1/3-->
		var document_heightall =$(window).height() ;
		var document_widthall=$(window).width();
		
		var document_topheight= $("#header_one").height();  	 <!--更改id-->
		var document_selectheight=	$("#header_two").height();	 <!--更改id-->
		var document_downheight= $("#footer_one").height();     <!--更改id-->
		var document_copyrightheight= $("#footer_two").height(); <!--更改id-->
		
		var minflash_height=minh-document_topheight-document_selectheight-document_downheight-document_copyrightheight;
			if(document_heightall<=minh){
				$("#flashcontent").height(minflash_height);
				$("body").css({
					'overflow-y':'auto'
				})
			}else{
				var content_height = document_heightall - document_topheight-document_selectheight-document_downheight-document_copyrightheight;
				$("#flashcontent").height(content_height)
				$("body").css({
					'overflow-y': 'auto'
				})
			}
			if(document_widthall<=minw){
				$("body").width(minw)
			}else{
				$("body").width(document_widthall)
			}
		}
		aa();
		$(window).resize(function() {
			aa();
		});
		$("body").css({
			'width'	: '100%',
			'height'	: '100%',
			'margin'	: '0',
			'padding'	: '0',
			'min-width':'1000px',<!--設定最小寬度--    2/3>
        	'min-height':'600px',<!--設定最小高度--    2/3>
        	'width':'expression( Math.max( document.body.clientWidth,1000 ) + "px" )',  <!--設定最小寬度--    3/3>
        	'height':'expression( Math.max(document.body.clientHeight,600 ) + "px" )'	<!--設定最小高度--    3/3>
		})
		$("html").css({
			'height': '100%',
			'width'	: '100%'
		})		
	});
