﻿var BasketPath = '../Basket.aspx';

function OpenBasket() {
    try {
        window.opener.OpenBasket();
        window.close();
    }
    catch (e) {
        window.location.href = BasketPath;
    }
}



var KopilkaPath = '../kopilka.aspx';

function OpenKopilka() {
    try {
        window.opener.OpenKopilka();
        window.close();
    }
    catch (e) {
        window.location.href = KopilkaPath;
    }
}

function trim(string)
{
    return string.replace(/(^\s+)|(\s+$)/g, "");
}