{
        btn1On = new Image()
        btn1On.src ="images/m-entrepriseoff.gif"
        btn1Off = new Image()
        btn1Off.src ="images/m-entreprise.gif"   
		
		btn2On = new Image()
        btn2On.src ="images/m-affaireoff.gif"
        btn2Off = new Image()
        btn2Off.src ="images/m-affaire.gif" 
		
		btn3On = new Image()
        btn3On.src ="images/m-evenementieloff.gif"
        btn3Off = new Image()
        btn3Off.src ="images/m-evenementiel.gif"
		
		btn4On = new Image()
        btn4On.src ="images/m-marcheoff.gif"
        btn4Off = new Image()
        btn4Off.src ="images/m-marche.gif"  
		
		btn5On = new Image()
        btn5On.src ="images/m-mangeroff.gif"
        btn5Off = new Image()
        btn5Off.src ="images/m-manger.gif" 
		
		btn6On = new Image()
        btn6On.src ="images/m-infooff.gif"
        btn6Off = new Image()
        btn6Off.src ="images/m-info.gif"  
}

function switchOn(imageName) {
  if (document.images)
     document.images[imageName].src = eval(imageName + 'On.src');
}
                 
function switchOff(imageName) {
  if (document.images)
     document.images[imageName].src = eval(imageName + 'Off.src');
}


function Advise() {
	alert("");
}

function livre() {
	var popurl="page.html";
	winpops=window.open(popurl,"","width=750,height=510,resizable=yes");
}

var popupWin = null;
	
function openWindow(url,WIDTH,HEIGHT) {

	TOP = (screen.height/2) - ( HEIGHT/2);
	LEFT = (screen.width/2) - ( WIDTH/2);
		
	url;
		
	if(!popupWin || popupWin.closed){
		popupWin = window.open( url , 'cplt', 'scrollbars=yes,top = ' + TOP + ',left = ' + LEFT + ',resizable=0,width=' + WIDTH + ',height=' + HEIGHT)
		popupWin.focus();
	} else {
		popupWin.close();
		openWindow(url ,WIDTH,HEIGHT);
	}
}