	
/*** FORMCHECK ***/

	
function checkForm01(){
	if(
		document.step01.surname.value == '' ||
		document.step01.name.value == '' ||
		document.step01.day.value == '' ||
		document.step01.month.value == '' ||
		document.step01.year.value == '' ||
		document.step01.job.value == '' ||
		document.step01.company.value == '' ||
		document.step01.street.value == '' ||
		document.step01.zip.value == '' ||
		document.step01.phone.value == '' ||
		document.step01.fax.value == '' ||
		document.step01.email.value == ''
	){
		alert('Bitte fuellen Sie die entsprechenden Felder aus');	
	}else{
		document.forms.step01.submit();
	}
}

function checkDownload01(){
	if(
		document.anmeldungDownload.title.value == 'none' ||
		document.anmeldungDownload.surname.value == '' ||
		document.anmeldungDownload.name.value == '' ||
		document.anmeldungDownload.email.value == ''
	){
		alert('Bitte fuellen Sie die entsprechenden Felder aus');	
	}else{
		document.forms.anmeldungDownload.submit();
	}
}


function checkForm02(){
	if(
		document.step02.education.value == '' ||
		document.step02.praxis.value == '' ||
		document.step02.publications.value == ''
	){
		alert('Bitte fuellen Sie die entsprechenden Felder aus');	
	}else{
		document.forms.step02.submit();
	}
}

function checkForm03(){
	if(
		document.step03.spoken_language.value == ''
	){
		alert('Bitte fuellen Sie die entsprechenden Felder aus');	
	}else{
		document.forms.step03.submit();
	}
}

function checkForm04(){
	if(
		(document.step04.id_money[0].checked == false && 
		document.step04.id_money[1].checked == false && 
		document.step04.id_money[2].checked == false) &&
		document.step04.spoken_language.value == ''
	){
		alert('Bitte fuellen Sie die entsprechenden Felder aus');	
	}else{
		document.forms.step04.submit();
	}
}

function checkForm05(){
	if(
		document.step05.accept.checked == ''
	){
		alert('Bitte akzeptieren Sie die Einwilligungerklaerung!');	
	}else{
		document.forms.step05.submit();
	}
}

