j$(window).bind('resize.popupResize', function() {
	var target = j$('#' + j$.js.common.popup.conf.targetIdName);
	if (target) {
		if (j$.util.browser.isIE6()) {
			target.setCenterPos();
		} else {
			target.setCenterPosFixed();
		}
	};
	var target2 = j$('#' + j$.js.common.overlay.conf.targetIdName);
	if (target2) {
		var doc = j$(document.body);
		if (j$.util.browser.isIE6()) {
			target2.css({width : doc.width(), height : doc.height()});
		}
	};
	return false;
});

