/*******************************************************
FE IDENTIFICATION
*******************************************************/
function verif_ident(formulaire) {
	if (formulaire.domaine.value == 'fr') {
		var alerte = 'Veuillez saisir un Utilisateur et un Mot de passe S.V.P.';
	}
	if (formulaire.domaine.value == 'en') {
		var alerte = 'Please enter your login and password';
	}
	if (formulaire.login.value == '') {
		alert(alerte);
		formulaire.login.focus();
		return false;
	} else if (formulaire.password.value == '') {
		alert(alerte);
		formulaire.password.focus();
		return false;
	} else {
		return true;
	}
}


/*******************************************************
POPUP INSCRIPTION
*******************************************************/
function pop_inscrip(url) {
    nameW='Inscription';
	width = 560;
	height = 660;
	xTop = screen.width/2 - (width/2);
	yTop = screen.height/2 - (height/2);
	window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
}



/*******************************************************
POPUP ACTUALITES
*******************************************************/
function pop_actu(url) {
    nameW='Actualites';
	width = 600;
	height = 500;
	xTop = screen.width/2 - (width/2);
	yTop = screen.height/2 - (height/2);
	window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
}

/*******************************************************
POPUP ZOOM IMAGES
*******************************************************/
function zoom_photo(image,largeur,hauteur) {
	nameW = 'Zoom';
	url = 'zoom.php?img=' + image;
	width = largeur;
	height = hauteur;
	xTop = screen.width/2 - (width/2);
	yTop = screen.height/2 - (height/2);
	window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
}
