function OuvrirDirect(idmatch) { 

	window.open('/FF/stats/lives/'+idmatch+'.html','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width=768,height=640');

	}

function OuvrirFeuilleMatch(sport,idmatch,idniveau) { 

	window.open('/FF/stats/FicheMatch'+idniveau+'_'+idmatch+'.html','main');

	}
function OuvrirMatchLive(sport,idmatch) { 

	window.open('/FF/stats/lives/'+idmatch+'.html','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width=768,height=640');

}
function OuvrirFeuilleMatch_FF(idniveau,idmatch,rubrique)
{
		window.open('/FF/'+rubrique+'/stats/fm/FicheMatch'+idniveau+'_'+idmatch+'.html','main');
}
function Soumettre(mode) {
	var checked_match=0;
	var lesmatchs='';
	$(':checkbox').each(function(i){
		if ( $(this).attr('checked') == true ){
			lesmatchs += $(this).attr('name')+'_';
		}
	});
	document.selectionmatch.LISTEMATCH.value=lesmatchs;
	document.selectionmatch.SELECTION.value=mode;
	document.selectionmatch.submit();
}