function Main_Menu_Rollover(Obj, Obj_TextID)
{
	Obj.style.backgroundPosition = "0 23";
	document.getElementById(Obj_TextID).style.color = "#FFFFFF";
}

function Main_Menu_Rollout(Obj, Obj_TextID)
{
	Obj.style.backgroundPosition = "0 0";
	document.getElementById(Obj_TextID).style.color = "#00378a";
}

function Aller_A(URL)
{
	window.location.replace(URL);
}

function Afficher(ObjetID) {
	if(document.getElementById(ObjetID).style.display==''){
	 document.getElementById(ObjetID).style.display='none';
	} else {
	 document.getElementById(ObjetID).style.display='';
	}
}

function Changer_Photo(ObjetID, Fichier)
{
	document.getElementById(ObjetID).src = Fichier;
}

function popup(page, largeur, hauteur) {
  window.open(page, "", "scrollbars=yes,menubar=no,toolbar=no,resizable=no,width=" + largeur + ",height=" + hauteur);
}

function ValiderSuppression() {
if (confirm('Souhaitez-vous supprimer cet item ?')) 
	{
    return true;
	} 
    else 
    {
	return false;
    };

}
