function doMailTo (strTarget, strPre, strPost, intEmail) {
  a = document.getElementById(strTarget);
  if (intEmail == 1) { strEmail = "<b>E-Mail: </b>"; } else { strEmail = ""; }
  if (intEmail == 2) { strName  = strPre; } else { strName = strPre + '@' + strPost; }
  a.innerHTML = strEmail + '<a href=\"mailto:' + strPre + '@' + strPost + '\">' + strName + '</a>'; 
}
