function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function verifToutDeCe(chkBox)
{
	//alert(chkBox.checked);
	temp = chkBox.form.elements.length;
	for (i=1; i < temp; i++)
	{
		var chkBoxLoop = chkBox.form.elements[i];
		//alert(chkBoxLoop.id.indexOf(chkBox.id));
		if(chkBoxLoop.type=="checkbox")
			chkBoxLoop.checked=chkBox.checked;
	}
}



