<!--
function foto_change(foto){
document.getElementById('pic'+foto).style.display = 'block';
for(countfoto=1;countfoto<=document.frm_bod.afb_count.value;countfoto++){
	if(countfoto != foto){
		document.getElementById('pic'+countfoto).style.display = 'none';
	}
}
}


function bod_check(){
	bod_alert = '';
	if(document.frm_bod.email.value == ''){
		bod_alert += '- Verplicht veld: E-mail\n';
	}

	if((document.frm_bod.bedrag.value == '0.00')||(document.frm_bod.bedrag.value == '')||(document.frm_bod.bedrag.value == '0')||(document.frm_bod.bedrag.value == '0.')||(document.frm_bod.bedrag.value == '0.0')){
		bod_alert += '- Verplicht veld: Bedrag\n';
	}

	if(bod_alert != ''){
		alert('De volgende error(s) zijn opgetreden:\n\n'+bod_alert);
		return false;
	}else{
		return true;
	}

}

function del_ad(aid, delad){
        if(confirm('Weet u zeker dat u uw advertentie wilt verwijderen?')){
                window.location = 'index.php?group=3&level=3&del=1&aid='+aid+'&delad='+delad;
        }
}

//

