function Over(name, image) {
	eval("window.document." + name + ".src = '" + image + "';");
}

function Out(name, image) {
	eval("window.document." + name + ".src = '" + image + "';");
}

function Index(langue) {
	document.index.externe.value = "0";
	document.index.langue.value = langue;
	document.index.rubrique.value = "home";
	document.index.submit();
}

function Langue(langue, action) {
	document.index.langue.value = langue;
	document.index.action.value = action;
	document.index.submit();
}

function Rubrique(rubrique, sousrubrique) {
	document.index.externe.value = "0";
	document.index.rubrique.value = rubrique;
	document.index.sousrubrique.value = sousrubrique;
	document.index.submit();
}

function SousRubrique(sousrubrique) {
	document.index.externe.value = "0";
	document.index.sousrubrique.value = sousrubrique;
	document.index.submit();
}

function Galerie(concert) {
	document.index.externe.value = "0";
	document.index.rubrique.value = "rev";
	document.index.sousrubrique.value = "img";
	document.index.concert.value = concert;
	document.index.submit();
}

function Cipher(cipher) {
	document.index.cipher.value = cipher;
	document.index.submit();
}

function Externe(page, id) {
	document.index.externe.value = id;
	window.open(page, "Cipher");
	document.index.submit();
}