function valid_0(){
	var trouve=false;
	var mark=document.f1.C077.value.toUpperCase();
/*	
	var tabMark = new Array();
	tabMark = ["SPO"];
*/
	if(mark.length < 1){
		alert("Vous devez saisir un code.");
		//return false;
	}
	else{
		//alert("Code d'invitation non valide.");
/*
		for(x=0;x<8;x++){
			if(mark == tabMark[x]){
				return true;
			}
		}
		if(trouve==false){
			alert("Code d'invitation non valide.");
			return false;
		}
*/
		if(mark.length == 6 && parseInt(mark) < 300001){
			return true;
		}
		else {
			alert("Le code saisi n'est pas valide.");
		}
			
	}
	return false;
}
