function checkForm(){
	if (document.forms[0].vorname.value=="") {
	  var show_alert=document.getElementById("show_alert").innerHTML = '<p>Bitte füllen Sie das Feld <b>Vorname</b> aus</p>'; 
	  return false;
	}
	
	if (document.forms[0].nachname.value=="") {
	  var show_alert=document.getElementById("show_alert").innerHTML = '<p>Bitte füllen Sie das Feld <b>Nachname</b> aus</p>'; 
	  return false;
	}
	
	if (document.forms[0].telefon.value=="") {
	var show_alert=document.getElementById("show_alert").innerHTML = '<p>Bitte füllen Sie das Feld <b>Telefon</b> aus</p>'; 
	  return false;
	}
	
	if (document.forms[0].email.value=="") {
	  var show_alert=document.getElementById("show_alert").innerHTML = '<p>Bitte füllen Sie das Feld <b>E-Mail</b> aus</p>'; 
	  return false;
	}
	
	if (document.forms[0].captcha.value=="") {
	  var show_alert=document.getElementById("show_alert").innerHTML = '<p>Bitte füllen Sie das Feld <b>Captcha</b> aus</p>'; 
	  return false;
	}
}
