<!--
/* fichier partage par toute les pages */

/* OUVRE POPUP DE TAILLE DETERMINE */

function circuitpopup(URL) {
newWindow = window.open(URL,"circuitpop", "toolbar=0, directories=0, status=1, menubar=0, scrollbars=auto, resizable=1, width=700, height=600");
}
function temoinpopup(URL) {
newWindow = window.open(URL,"temoinpop", "toolbar=0, directories=0, status=1, menubar=0, scrollbars=auto, resizable=1, width=850, height=600");
}

function diaporamapopup(URL) {
newWindow = window.open(URL,"diapopop", "toolbar=0, directories=0, status=1, menubar=0, scrollbars=auto, resizable=1, width=700, height=600");
}
function openPop(myForm){
if (! window.focus)return true;
window.open('',"circuitpop", "toolbar=0, directories=0, status=1, menubar=0, scrollbars=auto, resizable=1, width=750, height=480");
myForm.target="circuitpop";
return true;
}
var formIsSubmit = false;
function ArcansonValidForm(obj,foc){
	if(formIsSubmit==false){
	if(TZR.isFormValidWithFocus(obj,foc)){
		formIsSubmit = true;
		return window.alert('Votre demande est en cours d\'enregistrement');
	}else{
		window.alert('Les champs en rouge sont obligatoires');
		return false;
	}
	}else{
		return false;
	}
}

-->