﻿//外部リンクの警告ダイアログ
function otherSiteAlert(url) {
	flag = confirm("これより先は九州幸銀信用組合のページではありません。\nリンクを開きますか？");
	if(flag == true) window.open(url,"other",'toolbar=1,location=1,scrollbars=1,status=1,resizable=1');
}
