function openWindow(url) {
    window.open(url, '_new');
}

function switchUrl(link, url) {
    link.href = url;
    return true;
}

