﻿// JScript File

//populateElement('#txtZoeken', 'Enter your search term here');

function populateElement(selector, defvalue) {
    try {
        $(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;
            }
        });
    }
    catch (err) {
    }
}
 
function zoeken (){
    parent.location = 'search.aspx?s='+ document.getElementById('txtZoeken').value;
}
