function voirMenu(divID)
{
	if (divID == 1)
	{
		document.getElementById("trOrganisation").style.visibility = "visible";
		document.getElementById("trProjet").style.visibility = "collapse";
		document.getElementById("trMembre").style.visibility = "collapse";
	}
	if (divID == 2)
	{
		document.getElementById("trOrganisation").style.visibility = "collapse";
		document.getElementById("trProjet").style.visibility = "visible";
		document.getElementById("trMembre").style.visibility = "collapse";
	}
	if (divID == 3)
	{
		document.getElementById("trOrganisation").style.visibility = "collapse";
		document.getElementById("trProjet").style.visibility = "collapse";
		document.getElementById("trMembre").style.visibility = "visible";
	}
}

function connexion(nom, mdp)
{
	if (nom.length > 0 && mdp.length > 0)
	{
		if (nom.indexOf("&") == -1 && mdp.indexOf("?") == -1 && mdp.indexOf("&") == -1 && nom.indexOf("?") == -1)
			goAJAX('./AJAX/membre.php?type=conn&nom='+nom+'&mdp='+mdp,'trMembre');
		else
			alert("Votre nom ou mot de passe contient des caractères illégaux");
	}	
	else
		alert("Vous devez inscrire votre nom et votre mot de passe");
}

function navcal(moisP)
{
	if (moisP == true)
		window.location.replace("http://"+location.hostname+location.pathname+"?navcal=-2");
	else
		window.location.replace("http://"+location.hostname+location.pathname+"?navcal=2");		
}

function eventJour(year, month, day_of_month)
{
	goAJAX('./calendar/index.php?action=display&popup=no&year='+year+'&month='+month+'&day='+day_of_month, 'jourEvent');
}


