﻿function GoTo(url) {
    document.location.href = url;
}

function GoToAnchor(url) {
    document.location.href = document.location.href.substring(0, document.location.href.indexOf('#')) + url;
}

function GoToProvince(prov) {
    document.location.href = '/Portfolios/ProvProducts.aspx?id=' + prov;
}

function SwitchProvince(prov) {
    document.location.href = document.location.href.substring(0, document.location.href.indexOf('?')) + '?id=' + prov;
}