﻿function login() {
    if (location.href.toLowerCase().indexOf('returnurl=') > -1) {
        location.href = "http://my.cooli.cn/Login.aspx?ReturnUrl=" + location.href.substr(location.href.toLowerCase().indexOf('returnurl=') + 10);
    } else {
        location.href = "http://my.cooli.cn/Login.aspx?ReturnUrl=" + escape(location.href);
    }
    return false;
}
function regist() {
    if (location.href.toLowerCase().indexOf('returnurl=') > -1) {
        location.href = "http://my.cooli.cn/RegistPersonal.aspx?ReturnUrl=" + location.href.substr(location.href.toLowerCase().indexOf('returnurl=') + 10);
    } else {
        location.href = "http://my.cooli.cn/RegistPersonal.aspx?ReturnUrl=" + escape(location.href);
    }
    return false;
}
function addToFavorite() {
    var a = "http://www.cooli.cn/";
    var b = "酷爱网上商城";
    if (document.all) {
        window.external.AddFavorite(a, b)
    } else if (window.sidebar) {
        window.sidebar.addPanel(b, a, "")
    } else {
        alert("对不起，您的浏览器不支持此操作!\n请您使用菜单栏或Ctrl+D收藏本站。")
    }
}
