//Afficher les menu une fois connecté
function choix(name, id)
{
	if(name=='profil'){
		document.getElementById("choix-ok").innerHTML = '<b><a href="/members/user/'+id+'/edit/">Editer mon profil</a><br /><a href="/members/user/'+id+'/">Voir mon profil</a></b>';
	}
	else if(name=='administration'){
		document.getElementById("choix-ok").innerHTML = '<b><a href="/admn/" target="_blank">Administration</a></b>';
	}
	else if(name=='deconnection'){
		document.location.href ='/log-off.html';
	}
}

//Pour changer le background des input du login
function bG(name)
{
	if(name=='login'){
	document.getElementById("logine").style.backgroundImage = 'url("images/login-focus.png")';
	document.getElementById("logine").style.backgroundPosition = 'right center';
	document.getElementById("logine").style.backgroundRepeat = 'no-repeat';
	}
	else if(name=='password'){
	document.getElementById("password").style.backgroundImage = 'url("images/password-focus.png")';
	document.getElementById("password").style.backgroundPosition = 'right center';
	document.getElementById("password").style.backgroundRepeat = 'no-repeat';
	}
	else if(name=='blur-login'){
	document.getElementById("logine").style.backgroundImage = 'url("images/login.png")';
	document.getElementById("logine").style.backgroundPosition = 'right center';
	document.getElementById("logine").style.backgroundRepeat = 'no-repeat';
	}
	else if(name=='blur-password'){
	document.getElementById("password").style.backgroundImage = 'url("images/password.png")';
	document.getElementById("password").style.backgroundPosition = 'right center';
	document.getElementById("password").style.backgroundRepeat = 'no-repeat';
	}
}

//S'enregistrer
function register(name)
{
	if(name=='register'){
		document.location.href ='/register/';
	}
	else if(name=='lost_password'){
		document.location.href='/';
	}
}

//On déclare la variable test
var test;
//Pour savoir si la case doit être coché
function check(option, name)
{
	//Si on click sur la case
	if(option == 'on')
	{
		//Par défaut on click la table
		document.getElementById(name).checked = 'true';
		//On indique que le variable test est égale au contenu de l'input
		test = $('#'+name+'-input').val();
	}
	//Si on click autre part que sur la case
	else if(option == 'off')
	{
		//Si après le déclick la valeur est égale à la valeur avant le click
		if($('#'+name+'-input').val() == test)
		{
			//On décoche la croix
			document.getElementById(name).checked = '';
		}
		//Sinon
		else
		{
			//La croix est toujours coché
			document.getElementById(name).checked = 'true';
		}
	}
}

//Voir l'avatar
function viewAvatar(avatar)
{
	window.open(avatar, 'avatar','width=, height=' );
}

//changer la page
function changePage(page)
{
	document.location.href = page.options[page.selectedIndex].value;
}

