// JavaScript Document

var chemin = "images/";
var liste_images = new Array('bMenuFond.png','bMenuFondD.png','bMenuFondG2.png');
document.image_chargee = new Array();

function prechargement() 
{
	for ( i = 0; i < liste_images.length; i++ ) 
	{
		document.image_chargee[i] = new Image;
		document.image_chargee[i].src = chemin + liste_images[i];
	}
}

document.onload = prechargement();

//------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------

function MenuOn(nomMenu, etat){
	//alert(nomMenu);
	if(nomMenu!=""){
		if(etat=="on"){
			document.getElementById(nomMenu+"G").className = "bOnGauche";
			document.getElementById(nomMenu+"F").className = "bOnFond";
			document.getElementById(nomMenu+"D").className = "bOnDroite";
		}
		if(etat=="off"){
			document.getElementById(nomMenu+"G").className = "";
			document.getElementById(nomMenu+"F").className = "";
			document.getElementById(nomMenu+"D").className = "";
		}
	}
}

//------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------

function ouvrePopupCannes2007()
{
	var largeur = 600;
	var hauteur = 480;
	var posTop = (screen.height-hauteur)/2;
	var posLeft = (screen.width-largeur)/2;
	
	window.open("popup/infoCannes2007.asp","infoCannes2007","top="+posTop+",left="+posLeft+",width="+largeur+",height="+hauteur+",scrollbars=yes,resizable");	
}