function BlurLinks() {
  // Text- u. Grafik-Links
  lnks = document.getElementsByTagName('a');
  for(i=0; i<lnks.length; i++)
  {
    lnks[i].onfocus = new Function("this.blur()");
  }

  // ImageMaps
  lnks = document.getElementsByTagName('area');
  for(i=0; i<lnks.length; i++)
  {
    lnks[i].onfocus = new Function("this.blur()");
  }
}

onload = BlurLinks;

// Gutscheinformular - Gutscheinwert addieren
// ******************************************************
function zaehler() {
   var WertA = document.getElementById("GSanz20").value
   var WertB = document.getElementById("GSanz21").value;
   var WertC = document.getElementById("GSanz22").value;
   var WertD = document.getElementById("GSanz23").value;
   var WertE = document.getElementById("GSanz24").value;
   var WertF = document.getElementById("GSanz25").value;
   var WertG = document.getElementById("GSanz26").value;
   var WertH = document.getElementById("GSanz27").value;
   var WertI = document.getElementById("GSanz28").value;
   var WertJ = document.getElementById("GSanz29").value;
   document.getElementById("GSanzGesamt").value = (WertA * 20) + (WertB * 22) + (WertC * 25) + (WertD * 27) + (WertE * 49) + (WertF * 35) + (WertG * 38) + (WertH * 155) + (WertI * 292) + (WertJ * 584) + 6.60;
 }