function txtOnFocus (obj,image) {
	if (obj.value == '') {
		obj.style.backgroundImage = '';
		obj.style.backgroundRepeat = '';
		obj.style.backgroundPosition = '';
	} else {
		obj.style.backgroundImage = '';
		obj.style.backgroundRepeat = '';
		obj.style.backgroundPosition = '';
		obj.value = '';
	}
}

function txtOnBlur (obj,img,pos) {
	if (obj.value == '') {
		obj.style.backgroundImage = 'url(' + img + ')';
		obj.style.backgroundRepeat = 'no-repeat';
		obj.style.backgroundPosition = 'left top';
		obj.value = '    Snel zoeken';
	}
}