function clickit(URL) {
    if (URL.indexOf("http") != -1) {
        window.open(URL);
    }
    else {
        document.location.href = URL;
    }
}

function openCookieWindow(url) {
    popupWin = window.open(url, 'cookie', 'menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,width=188,height=260,left=50,top=50')
}

var newwindow = '';

function openWord(word) {
    var adress = "/templates/pages/DictionaryRedirect.aspx?word=" + word;
    newwindow = window.open(adress, "dictionary", "width=240,height=300");
    //newwindow.focus();
}

function getPage(link) {
    opener.location.href = link;
    this.window.focus();
}

function selPage(selObj2) {
    var features = "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes";
    nyUrl = selObj2.options[selObj2.selectedIndex].value;
    window.open(nyUrl, '', features);
}