//Plaatje in textvakje
function txtOnFocus (obj) {

	obj.style.backgroundImage = '';

}



function txtOnBlur (obj,image) {

	if (obj.value == '') {
	
	obj.style.backgroundImage = 'url(' + image + ')';

			 obj.style.backgroundRepeat = 'no-repeat';
	
			 obj.style.backgroundPositon = 'left center';

			 }
}
// #Plaatje in textvakje