function btnLogin() {
	location.href = 'https://www.e-mechatronics.com/ec_cart/PreLogin?MENU2URL=' + document.URL;
}

function btnLogout(){ 

    // クッキーの削除
    to_day = new Date();
    to_day.setYear(to_day.getYear()-1);  // 去年の日付
    document.cookie="sspcd1=; expires=" + to_day.toGMTString() + "; path=/; domain=.e-mechatronics.com;　secure";
    document.cookie="sspcd2=; expires=" + to_day.toGMTString() + "; path=/; domain=.e-mechatronics.com;　secure";
    document.cookie="sspcd3=; expires=" + to_day.toGMTString() + "; path=/; domain=.e-mechatronics.com;　secure";
// ▽ セキュリティ強化対応 2009/11/27 Add
    document.cookie="ldate=; expires=" + to_day.toGMTString() + "; path=/; domain=.e-mechatronics.com;　secure";
    document.cookie="ldate2=; expires=" + to_day.toGMTString() + "; path=/; domain=.e-mechatronics.com;　secure";
// △ セキュリティ強化対応 2009/11/27 Add

    var sturl = document.URL;

    // SSL有りの画面の場合はトップへ遷移
    if (sturl.indexOf("/jsp_ssl/") != -1) {
        location.href = "/";
    }else{
        document.FRMLOGIN.action = sturl;
        document.FRMLOGIN.submit();
    }
}