﻿// JScript File
function populateElement(selector, defvalue) {
    $(selector).each(function() {
        if($.trim(this.value) == "") {
            this.value = defvalue;
        }
    });
  
    $(selector).focus(function() {
        if(this.value == defvalue) {
            this.value = "";
        }
    });
    
    $(selector).blur(function() {
        if($.trim(this.value) == "") {
            this.value = defvalue;
        }
    });
}

function zoeken(){
    window.location.href = 'search.aspx?s=' + document.getElementById('ctl00_txtZoeken').value;
}
function voerZoekKnopUit($char, $mozChar) {
    var keyCode;
    if ($mozChar != null) {
        keyCode = $mozChar;
    }
    else {
        keyCode = $char;
    }

    if (keyCode == '13') {
        zoeken();
    }
}
