Working = false;

function Menu(Obj, Texte_ID, Etat)
{
	if (Etat == 1)
	{
		// Change le fond
		Obj.style.backgroundColor = "#ffffff";
		document.getElementById(Texte_ID).style.backgroundColor = Obj.style.backgroundColor;
		
		document.getElementById(Texte_ID).style.color = "#002e5f";
		
	} else {
		Obj.style.backgroundColor = "#002e5f";		
		document.getElementById(Texte_ID).style.backgroundColor = Obj.style.backgroundColor;
		
		document.getElementById(Texte_ID).style.color = "#ffffff";
	}
}


function Rubrique(Obj, Texte_ID, Etat)
{
	if (Etat == 1)
	{
		// Change le fond
		Obj.style.backgroundColor = "#ffffff";
		document.getElementById(Texte_ID).style.backgroundColor = Obj.style.backgroundColor;
		
		document.getElementById(Texte_ID).style.color = "#f36421";
		
	} else {
		Obj.style.backgroundColor = "#f36421";		
		document.getElementById(Texte_ID).style.backgroundColor = Obj.style.backgroundColor;
		
		document.getElementById(Texte_ID).style.color = "#ffffff";
	}
}


function Aller_A(URL)
{
	window.location.replace(URL);
}

function Menu_Rubrique()
{
		if (document.getElementById("mnuRubrique").height <= 2)
		{
			timeoutID = window.setTimeout("Menu_Rubrique_Expand()",5);
		} else {
			timeoutID = window.setTimeout("Menu_Rubrique_Close_Opacite(100)",5);
		}
}

function Menu_Rubrique_Expand(){

	document.getElementById("mnuRubrique").height++;
	document.getElementById("mnuRubrique").height++;
	
	window.clearTimeout(timeoutID);
	
	if (document.getElementById("mnuRubrique").height < 50)
	{
		timeoutID = window.setTimeout("Menu_Rubrique_Expand()",5);
	} else {
		if(document.all)
		{
			document.getElementById("Rubriques").style.filter = "alpha(opacity=0)";
		}
		else
		{
			document.getElementById("Rubriques").style.setProperty("-moz-opacity", 0, "");
		}
		document.getElementById("Rubriques").style.display = "inline";	
		timeoutID = window.setTimeout("Menu_Rubrique_Expand_Opacite(0)",5);
	}
}

function Menu_Rubrique_Expand_Opacite(Valeur){

	Valeur = Valeur + 5;
	
	if(document.getElementById)
	{
		if(document.all)
		{
			document.getElementById("Rubriques").style.filter = "alpha(opacity=" + Valeur + ")";
		}
		else
		{
			document.getElementById("Rubriques").style.setProperty("-moz-opacity", Valeur/100, "");
		}
	}

	window.clearTimeout(timeoutID);

	if (parseInt(Valeur) < 100)
	{
		timeoutID = window.setTimeout("Menu_Rubrique_Expand_Opacite(" + Valeur + ")",5);
	}
}

function Menu_Rubrique_Close_Opacite(Valeur){

	Valeur = Valeur - 5;

	if(document.getElementById)
	{
		if(document.all)
		{
			document.getElementById("Rubriques").style.filter = "alpha(opacity=" + Valeur + ")";
		}
		else
		{
			document.getElementById("Rubriques").style.setProperty("-moz-opacity", Valeur/100, "");
		}
	}

	window.clearTimeout(timeoutID);

	if (parseInt(Valeur) != 0)
	{
		timeoutID = window.setTimeout("Menu_Rubrique_Close_Opacite(" + Valeur + ")",5);
	} else {
		Menu_Rubrique_Close();	
	}
}

function Menu_Rubrique_Close(){

	document.getElementById("mnuRubrique").height--;
	document.getElementById("mnuRubrique").height--;


	window.clearTimeout(timeoutID);
	
	if (document.getElementById("mnuRubrique").height > 2)
	{		
		timeoutID = window.setTimeout("Menu_Rubrique_Close()",5);
	}

}


function Image_Popup(Image_URL, Titre, Couleur_Fond)
    {

	w = window.open('','chargement','width=10,height=10');
	w.document.write( "<html><head><title>" + Titre + "<\/title>\n" );
	w.document.write( "<script language='JavaScript'>\n");
	w.document.write( "IE5=NN4=NN6=false;\n");
	w.document.write( "if(document.all)IE5=true;\n");
	w.document.write( "else if(document.getElementById)NN6=true;\n");
	w.document.write( "else if(document.layers)NN4=true;\n");
	w.document.write( "function autoSize() {\n");
	w.document.write( "if(IE5) self.resizeTo(document.images[0].width+70,document.images[0].height+100);\n");
	w.document.write( "else if(NN6) self.sizeToContent();\n");
	w.document.write( "else window.resizeTo(document.images[0].width+70,document.images[0].height+100);\n");
	w.document.write( "self.focus();\n");
	w.document.write( "}\n<\/scri");
	w.document.write( "pt>\n");
	w.document.write( "<\/head><body leftmargin=0 bgcolor=\"" + Couleur_Fond + "\" topmargin=0 marginwidth=0 marginheight=0 onLoad='javascript:autoSize();'>" );
	
	w.document.write('<table width="100%" height="100%"><tr><td align="center" valign="center" width="100%" height="100%">');
	w.document.write( "<a href='javascript:window.close();'><img src='"+Image_URL+"' border=0 alt='"+Image_URL+"'><\/a>" );
	w.document.write('</td></tr></table>');
	
	w.document.write( "<\/body><\/html>" );
	w.document.close();
	}
