//retour au sommaire
function sommair() {
	if (window.name=="fenetreLulu1") {
		opener.location.href="../../index.htm"
		opener.focus();
		self.close();
	} else {
		if (window.name=="fenetreLulu2") {
			if (opener.window.name=="fenetreLulu1") {
				opener.opener.location.href="../../index.htm"
				opener.opener.focus();
				opener.self.close();
				self.close();
			} else {
				opener.location.href="../../index.htm"
				opener.focus();
				self.close();
			}
		} else {
			location.href="../../index.htm"
		}
	}
}

//retour au "sous-menu" précédent
function luluRetour() {
	if (window.name=="fenetreLulu1" ||window.name=="fenetreLulu2" ) {
		opener.focus();
		self.close();
	} else {
		location.href="../../index.htm"
	}
}

//ouvrir jeu dans nouvelle fenetre
function passeRetour(x) {
	//fenetreFille=open("","fenetreLulu2","fullscreen=yes,location=yes,menubar=yes,scrollbars=yes");
	fenetreFille=open("","fenetreLulu2","fullscreen=yes,innerWidth=794,width=794,innerHeight=600,height=600,left=0,top=0,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes");
	fenetreFille.location.href=x
	fenetreFille.focus();
}

