function resize(){
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}
	var browser=navigator.appName;
	var b_version=navigator.appVersion;
	var version=parseFloat(b_version);
	iHeight = myHeight-2;
	if (iHeight > 687){
		var H = iHeight;
		var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
		if( IE6){
			H = H-9;
		}
		if($("flashcontent")){
			$("flashcontent").style.height = (H) + "px";
		}
		if($("main_container")){
			$("main_container").style.height = (H) + "px";
		}
	} else {
		if($("flashcontent")){
			$("flashcontent").style.height = 687 + "px";
		}
		if($("main_container")){
			$("main_container").style.height =  687 + "px";
		}
	}
	iWidth = myWidth;
	iLeft = (myWidth-574)/2;
	if(iWidth >1000){
		if($("flashcontent")){$("flashcontent").style.width = (iWidth) + "px";}
		if($("main_container")){$("main_container").style.left  =  (iLeft)+ "px";}

	} else{
		if($("flashcontent")){$("flashcontent").style.width  = 1000 + "px";}
		if($("main_container")){$("main_container").style.left  =  213+ "px";}
	}
}