
	function magicReco_chk() {

	  if (document.magicRecoForm.elements['reco[to_name]'].value == '') {
	    alert('Bitte füllen Sie das Feld "Empfängername" aus.');
	    document.magicRecoForm.elements['reco[to_name]'].style.backgroundColor = '#FFB4B4';
	    document.magicRecoForm.elements['reco[to_name]'].focus();
	    return false; }
	    document.magicRecoForm.elements['reco[to_name]'].style.backgroundColor = '#FFFFFF';

	  if (document.magicRecoForm.elements['reco[to_mail]'].value == '') {
	    alert('Bitte füllen Sie das Feld "Empfänger E-Mail" aus.');
	    document.magicRecoForm.elements['reco[to_mail]'].style.backgroundColor = '#FFB4B4';
	    document.magicRecoForm.elements['reco[to_mail]'].focus();
	    return false; }
	    document.magicRecoForm.elements['reco[to_mail]'].style.backgroundColor = '#FFFFFF';

	  if (document.magicRecoForm.elements['reco[from_name]'].value == '') {
	    alert('Bitte füllen Sie das Feld "Absendername" aus.');
	    document.magicRecoForm.elements['reco[from_name]'].style.backgroundColor = '#FFB4B4';
	    document.magicRecoForm.elements['reco[from_name]'].focus();
	    return false; }
	    document.magicRecoForm.elements['reco[from_name]'].style.backgroundColor = '#FFFFFF';

	  if (document.magicRecoForm.elements['reco[from_mail]'].value == '') {
	    alert('Bitte füllen Sie das Feld "Absender E-Mail" aus.');
	    document.magicRecoForm.elements['reco[from_mail]'].style.backgroundColor = '#FFB4B4';
	    document.magicRecoForm.elements['reco[from_mail]'].focus();
	    return false; }
	    document.magicRecoForm.elements['reco[from_mail]'].style.backgroundColor = '#FFFFFF';

	}//magicReco_chk
