function pop_enews(Path){

var Path;

myReg = /^\.\/news\/local/;
myReg2 = /^\/news\/local/;
myReg3 = /^\.\/news\d/;

if(myReg.test(Path)) {
	Path = Path.replace(/\./,"/member");
}
else if(myReg2.test(Path)) {
	Path = Path.replace(/\//,"/member/");
}
else if(myReg3.test(Path)) {
	var Path_domain = "/member/news/local/";
	var Path_dir = Path.substr(6,8);
	Path = Path.replace(/\./,"");
	Path = Path_domain + Path_dir + Path;
}

//var Path = Path.replace(/./,"https://www.ehime-np.co.jp/member");

var newPage = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
newPage += '<html>';
newPage += '<head>';
newPage += '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">';
newPage += '<title>愛媛新聞社ONLINE</title>';
newPage += '<style type="text/css">';
newPage += '<!--body{font-size: 14px; line-height: 1.5em;font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3"; width: 350px; margin-left: 15px; margin-top: 10px; margin-right: 15px; margin-bottom: 10px;}';
newPage += 'span {font-size: 12px;}';
newPage += '.kiji {border: 1px solid #FF0000;padding: 1em;margin-top: 5px;text-align: center;}';
newPage += '.member {margin-bottom: 0px;}';
newPage += '.close_button {text-align: center;}';
newPage += 'ul {list-style-type: square;list-style-position: outside;margin-bottom: 0px;}';
newPage += 'li {margin-bottom: 1em;}';
newPage += '.close_button {margin: 0px;}';
newPage += '.pint {text-align: right;}';
newPage += '-->';
newPage += '</style>';
newPage += '<script language="JavaScript" type="text/javascript">';
newPage += 'function notMember(){if(window.opener){window.opener.location.href="/ac/index.html";}if(window.opener.closed){window.open("/ac/index.html","new","");}window.close();}';
newPage += 'function Member(){if(window.opener){window.opener.location.href="';
newPage += Path;
newPage += '"}if(window.opener.closed){window.open("';
newPage += Path;
newPage += '","new","");}window.close();}';
newPage += '</script>';
newPage += '</head>';
newPage += '<body>';
newPage += '<a href="../" target="_blank"><img src="/images/logosmall.gif" alt="愛媛新聞社ONLINE" width="181" height="26" border="0"></a>';
newPage += '<p class="kiji"><strong>このコンテンツは、<br>アクリートくらぶ会員向けサイトで閲覧できます。</strong><br>';
newPage += '<span>＊同サイトは、特集記事や動画コーナーも充実しています。</span>';
newPage += '<ul>';
newPage += '<li class="not_member"><strong>アクリートくらぶに入会登録されていない方</strong><br>';
newPage += '<a href="javascript:notMember()">こちらのコーナー</a> から申し込めます。<br>';
newPage += '<span>＊規約により、お申し込みは愛媛県内在住の方に限らせていただきます。</span>';
newPage += '</li>';
newPage += '<li class="member"><strong>アクリートくらぶ会員の方</strong><br>';
newPage += '<a href="javascript:Member()">会員向けサイトへログイン</a> してください。<br>';
newPage += '<div align="right"><span><a href="https://www.ehime-np.co.jp/AccreteClub_web/inout/getPassword.do" target="_blank">パスワードを忘れた方へ</a></span></div>';
newPage += '</li>';
newPage += '</ul>';
newPage += '<div class="pint"><img src="/images/pop_ac_pint.gif" alt="ピント" width="70" height="48"></div>';
newPage += '<p class="close_button">';
newPage += '<input type="button" value="閉じる" onclick="window.close()">';
newPage += '</p>';
newPage += '</body>';
newPage += '</html>';

subWin = window.open("","send","width=400,height=400,scrollbars=yes,status=yes");
subWin.document.write(newPage);

subWin.document.close();
}

