function checkTest() {
	var anzahlja=0;
	for (i = 1 ; i <= 12; i++) {
		if (document.deprTest.elements[i-1].checked== true ) {
			anzahlja++;
		}			
	}
	if (anzahlja <=4) document.deprTest.action = "depression/vorliegen_depression/depressionstest/auswertung1/";
	if (anzahlja > 4) document.deprTest.action = "depression/vorliegen_depression/depressionstest/auswertung2/";
	return true;
}