﻿/* JS Script */
function checkSearch() {
    var sQuery = document.getElementById('sword');
    if (sQuery != null && sQuery.value != null) {
        alert('Søker etter: ' + sQuery.value + '\nURL: ' + sURL);
    }
}
function doSearch() {
    var sQuery = document.getElementById('sword');
    var sForm = document.getElementById('searchForm');
    sForm.submit();
    /*if (sQuery != null && sForm != null && sQuery.value != null) {
        var sPostURL = 'index.php?id=147&stype=L0&locationData=147%3Att_content%3A214&sword=' + escape(sQuery.value) + '&scols=tt_content.header-bodytext-imagecaption&submit=Search';
        sForm.action = sPostURL;
        sForm.submit();
    }*/
}

/* JQuery script */
$(document).ready(function() {
    $('#infoBox').click(function() {
        document.location = '/index.php?id=156';
    });
});
