
function lostFocus(target, text){

  if(target.value == ''){
    target.value = text;
  }

}

function getFocus(target){

  if(target.value == 'Vorname' || target.value == 'Nachname' || target.value == 'E-Mail'){
    target.value = '';
  }

}
