document.write('
');
document.write('');
document.write('
');
document.write('
');
document.write('
');
function go_mypage() {
location.href = '/mypage/index';
return false;
}
function a_login() {
if ($('#li_login_id').val() == '' || $('#li_login_pw').val() == '') {
$('#err_login').html('ユーザ名、パスワードを入力してください');
} else {
$.post(
"/customer/customer",
{"id": $('#li_login_id').val(), "pw": $('#li_login_pw').val()},
function (data, status) {
if (data.success == 'true') {
location.href = encodeURI(window.location.pathname + window.location.search + window.location.hash);
} else {
$('#err_login').html('入力されたユーザID、パスワードで ログインできませんでした。');
}
},
"json"
);
}
}
function a_reminder() {
if ($('#rem_email').val() == '') {
$('#err_reminder').html('ユーザ名、またはメールアドレスを入力してください');
} else {
$.post(
"/customer/emailreminder",
{"email": $('#rem_email').val()},
function (data, status) {
if (data.success == 'true') {
$('#err_reminder').html('登録されているメールアドレスにメールをお送りいたしました。');
} else {
$('#err_reminder').html('お客様情報を取得できませんでした。');
}
},
"json"
);
}
}
function a_logout() {
location.href = "/customer/logout?p=" + encodeURI(window.location.pathname+window.location.search+window.location.hash);
}