function leegmaken(_this, _standaardwaarde, _wachtwoordveld) {
    if (_this.value == _standaardwaarde) {
        _this.value = "";
        _this.focus();
        if (_wachtwoordveld == true) {
            _this.setAttribute("type", "password");
        }
    } 
}

