﻿function RemoveDefaultText(textbox) {
    var attribute = textbox.value;

    if (attribute == 'zoeken') {
        textbox.value = '';
    }
}

function CheckTextboxValue(textbox) {
    var attribute = textbox.value;
    
    if (attribute == '') {
        textbox.value = 'zoeken';
    }
}
