	
	function Hinweis(){
		
		document.getElementById('mailing').innerHTML="<div style='text-align:center; padding-top:60px' class='ueberschrift_fliesstext'>Vielen Dank für Ihre Empfehlung!<br><span class='fliesstext_bold'> Der Empfänger wurde per Mail benachrichtigt.</span></div>";
		
		}
	
	

	
	
	function set_Request(){
		var info=document.getElementById('info').value;
		var nachricht=document.getElementById('nachricht').value;
		var email_from=document.getElementById('email_from').value;
		var email_to=document.getElementById('email_to').value;
		var url = 'sendmail.php?mailart=empfehlen&info='+info+'&nachricht='+nachricht+'&email_from='+email_from+'&email='+email_to+'&mailart=empfehlen';	
		document.getElementById('formular').action=url;
		document.formular.submit();

	
	}
  
	
	
	
	
	
	
	

function formcheck(type){

	document.getElementById("step"+type).value="false";
	type1=document.getElementById("step1").value;
	type2=document.getElementById("step2").value;
	
	if(type1=="false" && type2=="false"){
	
		document.getElementById("absenden").innerHTML="<input type='button'  value='Absenden »' class='fliesstext_bold' onClick='set_Request();'  style='background-color:#FF0000;  float:right; margin:10px 0px 0 0; color:#FFFFFF; border:0'/>";

	
	}
	

}

function show_mailing(){
	document.getElementById('mailing').style.display='';
	//Effect.toggle('mailing', 'blind', { duration: 0.5 });
}

function send_mail(){

document.getElementById("mailing_loading").style.display='';

}

