
	<!--
	function checkBericht(theForm) {
		var error = false;
		if(theForm['aan'] && theForm['stuur_club']) {
			if(theForm['aan'].value=='' && theForm['stuur_club'].selectedIndex == 0 ) {
				error = true;
			}
		}
		else if(theForm['stuur_club']) {
			if(theForm['stuur_club'].selectedIndex == 0) {
				error = true;	
			}
		}
		else if(theForm['aan']) {
			if(theForm['aan'].value =='') {
				error = true;
			}
		}
		else {
			error = true;
		}
		if(!error && theForm['onderwerp'].value != '' && theForm['bericht'].value != '') {
			return true;
		}
		else {
			alert('Niet alle velden zijn ingevuld');
			return false;
		}
	}
	
	//Check or uncheck all checkboxes of the provided element
	function checkUncheckAll(theElement) {
		var theForm = theElement.form, z = 0;
		while (theForm[z].type == 'checkbox' && theForm[z].name != 'checkall') {
			theForm[z].checked = theElement.checked;
			z++;
		}
    }

	function cycle1() {
		if (currentAd1 == imgCt1) {
			currentAd1 = 0;
		}
		document.getElementById('vriendje').src= rootURLPoint + '/images/vriendjes/' + imgs1[currentAd1];
		document.getElementById('vriendjelink').href=lnks1[currentAd1];
		currentAd1++;
		setTimeout("cycle1()",5000);
	}
	//-->

