// --------------------- borders for text type inputs ------------------------------ //function attachBorderAndSelect(id){  var obj0 = document.getElementById(id)   if (obj0){      obj0.onfocus= function() {                  this.style.border='1px solid #b60050';                   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');}function initEvalForm(){  if (!document.getElementsByTagName) return// text type inputs attachBorderAndSelect('bedrijfsnaam'); attachBorderAndSelect('deelnemer'); attachBorderAndSelect('interessenaam'); attachBorderAndSelect('interessebedrijf'); attachBorderAndSelect('interesseadres'); attachBorderAndSelect('meerwetenover');   // textfield attachBorderAndSelect('opmerkingen');}
