// ****************************************************
// **** 'TOUT SELECTIONNER' ET 'VIDER LA SELECTION' ***
// ****         SELECTIONNE TOUT OU                 ***
// ****         DESELECTIONNE TOUT                  ***
// ****************************************************

function selectAll(bAll)
{	
	with( document.forms[0]['step2[]'] )
		for (var i = 0; i < options.length; i++) options[i].selected = bAll;
	return;
 }  
 
function Continuer()
{
	if(document.forms[0]['step2[]'].selectedIndex<0) 
				return alert ("Faites un choix.");
	document.forms[0].submit();
}

function changeStep1()
{
  //vide la selection si elle existe
	if( typeof( document.forms[0]['step2[]'] ) == 'object' ) selectAll( false );
  document.forms[0].submit();
}

function OpenMatch(NumMatch)
{
  var h=450;
	var w=380;
	var x = (new Number( window.screen.height )/2)-(h/2);
	var y = (new Number( window.screen.width )/2)-(w/2);
	window.open( "fr/ch_fm.php?no=" + NumMatch , "FM", "scrollbars=yes,top="+x+",left="+y+",height="+h+", width="+w )
}


