var BLANK_URL = '/blank.html';
var BLANK_IMG = '/images/design/spacer.gif';

function CheckSearch(e) {
    var unicode = e.keyCode ? e.keyCode : e.charCode;
    if (unicode == 13) {
        DoSearch();
    }
}

function DoSearch() {
    var oText = document.getElementById("ctl00_Header1_TextBox1");
    if (oText.value.length > 0) {
        document.location.href = "/search.aspx?SearchText=" + oText.value;
    }
}

function OpenAdmin() {
    var height = 900; //window.screen.availHeight-32;
    var width = 1200; //window.screen.availWidth - 7;
    var top = (window.screen.availHeight - height) / 2;
    var left = (window.screen.availWidth - width) / 2;

    mainWindow = window.open("http://admin.austvoll.no", null, "top=" + top + ",height=" + height + ",left=" + left + ",width=" + width + ",resizable=yes ,toolbar=no,location=no,menubar=no,status=yes,scrollbars=yes", false)
}

function LoadElements() {
    LoadPhotoalbumsFeed();
}