function m_opacity (id_menu, classe) {
	document.getElementById(id_menu).className = classe;

}
function no_opacity (id_menu, classe) {
	document.getElementById(id_menu).className = classe;
}
function soumettre () {
	
	if( validateForm( 'main_form' ) ){
		var oSelect = document.getElementById('main_form').getElementsByTagName("SELECT");
		for(var i=0;i<oSelect.length;i++){
			if(oSelect[i].multiple==true){
				oSelect[i].name = oSelect[i].name+'[]';
				if(oSelect[i].className=='selector'){
					NbCol1 = oSelect[i].length;
					// On lance une boucle pour selectionner tous les items
					for(a=0; a<NbCol1; a++){
						oSelect[i].options[a].selected = true;
					}
				}
			}
		}
		var oInput = document.getElementById('main_form').getElementsByTagName("INPUT");
		for(var i=0;i<oInput.length;i++){
			if(oInput[i].type=="checkbox"){
				oInput[i].name = oInput[i].name+'[]';
			}
		}
		document.getElementById('main_form').submit();
	}
}
function popupWindow(url, largeur, hauteur)
{
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(url, "popup","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",toolbar=no,location=no,scrollbar=no,status=no,menubar=no'");
}