// JavaScript Document

// 規約・会社概要など
function openwindow(url,target){
window.open(url,target, "scrollbars=yes,resizable=yes,width=620,height=600")
}

// IDパスワードを忘れた場合
function openwindow_forget(url,target){
window.open(url,target, "scrollbars=yes,resizable=yes,width=620,height=600")
}

// 画像一覧
function openalbum(url,target){
window.open(url,target, "scrollbars=yes,resizable=yes,width=620,height=600")
}

// コンビニダイレクト用支払方法説明ページ
function openpoint(url){
window.open(url, "", "width=620,height=650,scrollbars=yes");

}
