	function resizeContent(w) {
		strWidth =  w + "px";
		if (w < 950)
			strWidth =  "950px";
		else if (w >= 1280)
			strWidth =  "1280px";
		strWidth =  "950px";
		$('mainBodyWrap').setStyle( {"width": strWidth} );
	}

	function resizeListen() {
		outsizeWidth = document.body.clientWidth;
		resizeContent(outsizeWidth);
	}
	
	if(document.attachEvent) {
		window.attachEvent(
			"onload",
			function() {
				resizeListen();
				$('frameWrap').setStyle( { "display" : "" } );
			}
		);
		window.attachEvent(
			"onresize",
			function() {
				resizeListen();
			}
		);
	} else {
		window.addEventListener(
			"load",
			function() {
				resizeListen();
				$('frameWrap').setStyle( { "display" : "" } );
			},
			false);
		window.addEventListener(
			"resize",
			function() {
				resizeListen();
			},
			false);
	}