// JavaScript Document
function AntwortCheck()
	{	
	if (document.forms[0].Nombre2.value=="")
		{
		alert("Please tell us your name!!");
		return false;
		}
	if (document.forms[0].Apellidos2.value=="")
		{
		alert("What's your family name?");
		return false;
		}
	if (document.forms[0].email2.value=="")
		{
		alert("For fast contact, we need your email adress.");
		return false;
		}
	if ((document.forms[0].spanish_level.value=="no"))
		{
		alert("How good do you consider your Spanish to be?");
		return false;
		}
	if (document.forms[0].Curso.value=="none")
		{
		alert("Which course type would you like to attend?");
		return false;
		}
	if (document.forms[0].fecha_del_curso.value=="")
		{
		alert("When do you want your course to start?");
		return false;
		}
	if (document.forms[0].duracionn.value=="")
		{
		alert("How long do you want to learn?");
		return false;
		}
	if (document.forms[0].Alojamiento.value=="none")
		{
		alert("Which accommodation do you prefer?");
		return false;
		}
	
	
	var gesetzt=0;
	for(rbnr=0;rbnr<=5;rbnr++) // ist eine der checkboxen woher kennen sie uns aktiviert?
		{
		if (document.forms[0].Conosco_Melkart_Por[rbnr].checked!=true)gesetzt=0;
		else 
			{
			gesetzt=1;
			break;
			}
		}
	if(gesetzt!=1)
		{
		alert("Where do you know us from?");
		return false;
		}
	}
		