///////////////////////////////////////
//              POP-UP               //
///////////////////////////////////////
var MyWin = null;
function popupCentree(url,nom,largeur,hauteur,opt)	{
	//default value
	url = 		typeof(url) 		!= 'undefined' ? url 			: window.location;
	nom = 		typeof(nom) 		!= 'undefined' ? nom 			: 'pop_up';
	largeur = typeof(largeur) != 'undefined' ? largeur 	: 640;
	hauteur = typeof(hauteur) != 'undefined' ? hauteur 	: 480;
	opt = 		typeof(opt) 		!= 'undefined' ? opt 			: 'menubar=no,scrollbars=yes,statusbar=no';
	//on rajoute des marges ŕ la pop-up
	largeur+=20;
	hauteur+=100;
	//pop up position
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	//on ajoute top left width heigth aux options (compatibilité browser)
	if (opt!='') {
		opt += ',';
	}
	opt += 'top='+top+',left='+left+',width='+largeur+',height='+hauteur;
	//popup does not exist
	if (MyWin == null || MyWin.closed) {
		MyWin=window.open(url,nom,opt);
	} else {
	//else change location
		MyWin.location = url;
	}
	//position
	MyWin.moveTo(left,top);
	//size
	MyWin.resizeTo(largeur,hauteur);
	//show on top
	MyWin.focus();
}
///////////////////////////////////////
//            	DIAPORAMA            //
///////////////////////////////////////
function Switch_Diapo(action) {
	diaporama = document.getElementById("diapo_home");
	if (action=='open') {
		diaporama.className = 'grand_diapo';
	} else if (action=='close') {
		diaporama.className = 'petit_diapo';
	}
}