function hl_li(pointer, action) {
	switch(action) {
		case 'modif-over': {
			pointer.style.backgroundColor = '#dff3d5';
			pointer.style.cursor = 'pointer';
		};	break;
		case 'suppr-over': {
			pointer.style.backgroundColor = '#ffcdcd';
			pointer.style.cursor = 'pointer';
		} break;
		default: {
			pointer.style.backgroundColor = '#fff';
			pointer.style.cursor = 'normal';		
		} break;
	}
}
function supprimer_citation(actualiteID) {
	if(confirm('Voulez-vous supprimer définitivement cette citation ?')) {
		location.href='http://www.orlando-sport.fr/admin/supprimer-citation-'+actualiteID+'.htm';
	}
}

function supprimer_resultat(resultatID) {
	if(confirm('Voulez-vous supprimer définitivement ce résultat ?')) {
		location.href='http://www.orlando-sport.fr/admin/supprimer-resultat-'+resultatID+'.htm';
	}
}