(function($) {
	$.ipop = function() {
		var wx, wy;		// ウインドウの左上座標
		var mx, my;		// マウスの座標
		// ウインドウの座標を画面中央にする。
		wx = $().scrollLeft() + ($(window).width() - $('#ipop').outerWidth()) / 2;
		if (wx < 0) wx = 0;
		wy = $().scrollTop() + ($(window).height() - $('#ipop').outerHeight()) / 2;
		if (wy < 0) wy = 0;
		// ポップアップウインドウを表示する。
		$('#ipop').css('top', wy).css('left', wx).show();
		$('.btn_close').click(function() {$('#ipop').hide();});
	}
})(jQuery);

