// --------------------- borders for text type inputs ------------------------------ //function attachBorderAndSelect(id){  var obj0 = document.getElementById(id)   if (obj0){      obj0.onfocus= function() {                  this.style.border='1px solid #0067a6';                   this.select();				}      obj0.onblur = function() {                  this.style.border='1px solid #000000';                  if (this.value=="") {this.value=this.defaultValue}                  this.value=this.value                }  }}function initContact(){  if (!document.getElementsByTagName) return// text type inputs attachBorderAndSelect('bedrijfsnaam'); attachBorderAndSelect('contactpersoon'); attachBorderAndSelect('functie'); attachBorderAndSelect('adres'); attachBorderAndSelect('postcode'); attachBorderAndSelect('woonplaats'); attachBorderAndSelect('telefoon'); attachBorderAndSelect('fax'); attachBorderAndSelect('emailadres'); attachBorderAndSelect('urlbedrijf');// textfield attachBorderAndSelect('bericht'); attachBorderAndSelect('Omschrijving_Klacht');}
