//insurancecalc frontend
//alert("frontend");

function startCalcCompare() {
  var compForm = document.getElementById('calcCompare');
  if(compForm) {
    //compForm.action = '/cgi-bin/vers2002/view_leistung.cgi';
    compForm.method = 'post';
    compForm.target = '_blank';
    compForm.submit();
  }
  
}