
function AddMailLink(naam) {
  var tussen = "@mineralennlc";
  var eind = ".nl";

  document.write("<a href=mailto:"+naam+tussen+eind+">"+naam+tussen+eind+"</a>");

}

function trim(value) {
  value = value.replace(/^\s+/,''); 
  value = value.replace(/\s+$/,'');
  return value;
}

function chkPC(waarde) {
 var strCode = trim(waarde);
 strCode = strCode.toUpperCase();
 if (strCode.length==6) {
    window.document.forms[0].postcode.value = strCode.substr(0,4) + " " + strCode.substr(4,2);
 } else {
    window.document.forms[0].postcode.value = strCode;
 }
}

function toonIets(marker) {
  window.document.getElementById(marker).style.visibility = '';
}

function verbergIets(marker) {
  window.document.getElementById(marker).style.visibility = 'hidden';
}

function maakLeeg(veld) {
 if (veld.value == '(zonder voorvoegsels)') {
   veld.value = '';
   veld.focus();
 }
}

function setStd(veld) {
 if (veld.value == '') {
   veld.value = '(zonder voorvoegsels)';
 }
}

function kleurOn(veld) {
 veld.style.backgroundColor = '#FFFFFF';
}

function kleurOff(veld) {
  veld.style.backgroundColor = '#EFF5F1';
}

