//=============================================================================
//				S U I V I  D E S  M O D I F I C A T I O N S 
//============================================================================= 

//<script language=javascript>
var glbRegion;
var C_SEP = '£¤£';
var C_SEP_LIST = ':';

function InitPage() {
}


// Cette fonction permet de valider le contenu de la page selon l'action
// portée sur un champ.
function ValiderPage(pstrIdCtrl) {			
	var blnValid;	
	
	blnValid = true;

	with (document.MAIN_FORM) {
		switch(pstrIdCtrl) {
			case 'all':

				//Valider Si une région à été choisi (pour toute les choix)
				if (document.MAIN_FORM.cboregionProj.selectedIndex == 0) {
					ShowAlert(DC956337, '', document.MAIN_FORM.cboregionProj.name);
					blnValid = false;					
				}

				if (blnValid && cboregionProj.value == "ZZ") {
					ShowAlert(DC956340, '', document.MAIN_FORM.cboregionProj.name);
					blnValid = false;									
				}
						
				// Si tout est valide, on s'assure d'appeler la page des paramètres de recherche
				if (blnValid) {
					action = gstrURLPageRech;
					posted.value = "RESULTATRECH";
				}
				break;
		}
	}
				
	
	return blnValid;
}
//</script>