/*function MM_swapImgRestore() { //v3.0
	var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
	var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
	var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
	if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
	var p,i,x; 	if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
	var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
	if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
var fadebgcolor="white";
////NO need to edit beyond here/////////////
var fadearray=new Array(); //array to cache fadeshow instances
var fadeclear=new Array(); //array to cache corresponding clearinterval pointers
var dom=(document.getElementById); //modern dom browsers
var iebrowser=document.all;
 // dans un autre fichier :
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
	this.pausecheck=pause
	this.mouseovercheck=0
	this.delay=delay
	this.degree=10 //initial opacity degree (10%)
	this.curimageindex=0
	this.nextimageindex=1
	fadearray[fadearray.length]=this
	this.slideshowid=fadearray.length-1
	this.canvasbase="canvas"+this.slideshowid
	this.curcanvas=this.canvasbase+"_0"
	if (typeof displayorder!="undefined")
	theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
	this.theimages=theimages
	this.imageborder=parseInt(borderwidth)
	this.postimages=new Array() //preload images
	for (p=0;p<theimages.length;p++){
	this.postimages[p]=new Image()
	this.postimages[p].src=theimages[p][0]
}
	var fadewidth=fadewidth+this.imageborder*2
	var fadeheight=fadeheight+this.imageborder*2
	if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
	document.write('<div id="master'+this.slideshowid+'" style="z-index:0;position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
	else
	document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
	if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
	this.startit()
	else{
	this.curimageindex++
	setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
	}
}
function fadepic(obj){
	if (obj.degree<100){
		obj.degree+=10
		if (obj.tempobj.filters&&obj.tempobj.filters[0]){
			if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
				obj.tempobj.filters[0].opacity=obj.degree
			else //else if IE5.5-
				obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
			}
		else if (obj.tempobj.style.MozOpacity)
			obj.tempobj.style.MozOpacity=obj.degree/101
		else if (obj.tempobj.style.KhtmlOpacity)
			obj.tempobj.style.KhtmlOpacity=obj.degree/100
		else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
			obj.tempobj.style.opacity=obj.degree/101
	}
	else{
		clearInterval(fadeclear[obj.slideshowid])
		obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
		obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
		obj.populateslide(obj.tempobj, obj.nextimageindex)
		obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
		setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
	}
}
fadeshow.prototype.populateslide=function(picobj, picindex){
	var slideHTML=""
	if (this.theimages[picindex][1]!="") //if associated link exists for image
	slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
	slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
	if (this.theimages[picindex][1]!="") //if associated link exists for image
	slideHTML+='</a>'
	picobj.innerHTML=slideHTML
}
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
}
fadeshow.prototype.startit=function(){
	var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
	this.populateslide(crossobj, this.curimageindex)
	if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
		var cacheobj=this
		var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
		crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
		crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
	}
	this.rotateimage()
}
// fin
var fadeimages=new Array()
function ajouter_bookmarks() {
	var url = window.location.href;
	var title = document.title;
	if (window.sidebar) { // Mozilla Firefox Bookmark
		alert('Pressez Controle-D pour ajouter un favori sur cette page.');
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title);
	} else if(window.opera && window.print) { // Opera Hotlist
		alert('Pressez Controle-T pour ajouter un favori sur cette page.');
	}
}

*/
/**
 * @desc	affiche la boite de selection de profil, en changeant l'image cliquable
 * @author	MHA(pimentic)
 * @param	none
 * @return	aucun : modification d'elements dans la page
 */
function ouvrir_selection_profil(){
	if(!(oDiv = document.getElementById('selection_profil'))) return false;
// 	if(!(oImageARemplacer1 = document.getElementById('img_selection_profil_1'))) return false;
	oDiv.style.display = (oDiv.style.display == 'block') ? 'none' : 'block';
// 	if(oImageARemplacer1.src.indexOf('fileadmin/templates/img/mask/modif_13_on.jpg') > -1)
// 		oImageARemplacer1.src = oImageARemplacer1.src.replace('/modif_13_on.jpg','/modif_13.jpg');
// 	else
// 		oImageARemplacer1.src = oImageARemplacer1.src.replace('/modif_13.jpg','/modif_13_on.jpg');
}
var oTimeOut;	//variable globale qui sert a annuler le timeout quand on repasse la souris dans la div avant le delai au bout duquel cette div doit se fermer
/**
 * @desc	affiche la division contenant les profils
 * @author	MHA(pimentic)
 * @return	aucun
 */
function roll_profils() {
	if(!(oDiv = document.getElementById('selection_profil'))) return false;
// 	if(!(oImageARemplacer1 = document.getElementById('img_selection_profil_1'))) return false;
	oDiv.style.display = 'block';
// 	oImageARemplacer1.src = oImageARemplacer1.src.replace('/modif_13.jpg','/modif_13_on.jpg');
	if(oTimeOut) clearTimeout(oTimeOut);
}
/**
 * @desc	cache la division contenant les profils : met en place le timeout
 * @author	MHA(pimentic)
 * @return	aucun
 */
function out_profils() {
	oTimeOut = setTimeout('hide_profils();',1500);
}
/**
 * @desc	cache la division contenant les profils
 * @author	MHA(pimentic)
 * @return	aucun
 */
function hide_profils() {
	if(!(oDiv = document.getElementById('selection_profil'))) return false;
// 	if(!(oImageARemplacer1 = document.getElementById('img_selection_profil_1'))) return false;
	oDiv.style.display = 'none';
// 	oImageARemplacer1.src = oImageARemplacer1.src.replace('/modif_13_on.jpg','/modif_13.jpg');
}
var iDefaultSize = 11;
var iDefaultTitleSize = 14;
var iDefaultIncrement = 0;
var sFontUnit = 'px';											// on sait jamais, si on veut changer un jour ...
function fontSizer(inc) {
	var size = readCookie('size');
	size = parseInt(inc)+parseInt(size);
	if (size < 0 ) { size = 0; }
	doFontSizing(inc);
	createCookie("size", size, 365);
}
function fontSizerOnLoad(){var size = readCookie('size');if (size < 0 ) { size = 0; }doFontSizing(size);}
/**
 * @desc	effectue la modification des polices du site
 * @author	MHA(pimentic)
 * @param	theFontSize		: l'increment de police a appliquer au texte
 * @return	aucun
 */
function doFontSizing(theFontSize) {
	oCollectionElements = document.getElementsByTagName("*");			// hop j'ai recupere tous les elements de la page courante
	var oElementCourant;												// ce sera l'element a modifier
	var iCptElements = 0;												// compteur utilise dans la boucle qui parse les elements du document
	theFontSize = parseInt(theFontSize);								// conversion en entier de l'increment demande
	var sClasse = "";													// la classe de l'element courant
	for(iCptElements = 0; iCptElements < oCollectionElements.length; iCptElements++) {	// parcours des elements de la page courante
		if (oElementCourant = oCollectionElements[iCptElements]) {
			if(oElementCourant.parentNode.tagName == 'HEAD') continue;	// je ne style pas les elements de la balise <head>
			sClasse = oElementCourant.className;

			if (oElementCourant = oElementCourant.style) {

				sFontSize = oElementCourant.fontSize;
				if ((typeof(sFontSize) == 'undefined' || sFontSize == "") && sFontSize != '1px' ) {
					if(sClasse == "titre")
						sFontSize = iDefaultTitleSize + 'px';
					else
						sFontSize = iDefaultSize + 'px';
				}
				if(sFontSize.indexOf(sFontUnit) > -1)
					sFontSize = parseInt(sFontSize.replace(sFontUnit,''));		// valeur entiere de la taille de police

				if (sFontSize > 1){
					if(theFontSize == '0'){
						oElementCourant.fontSize = '';
					}else{
						oElementCourant.fontSize = (sFontSize + theFontSize) + sFontUnit;	// attention ! thefontsize represente l'increment et pas la police a mettre !
					}
					if(sClasse != "titre")
						iIncrementCourant = sFontSize + theFontSize - iDefaultSize;
				}
			}
			sClasse = "";
		}
	}
	var oCollectionElements = null;
	var oElementCourant = null;
	var sFontSize = "";
}
function normalSize() {
	var size = iDefaultIncrement;
	doFontSizing(size);
	createCookie("size", size, 365);
}
function normalSizePrint() {
	var size = iDefaultIncrement;
	doFontSizing(size);
}
function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "expires="+date.toGMTString();
	}else{
		expires = "";
	}
	document.cookie = name+'='+value+'; '+expires+'; path=/';
}
function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++){
		var c = ca[i];
		while (c.charAt(0)==' '){
			c = c.substring(1,c.length);
		}
		if (c.indexOf(nameEQ) == 0){
			return c.substring(nameEQ.length,c.length);
		}
	}
	return iDefaultIncrement;
}
function addLoadListener(func) {
   if (window.addEventListener) {
      window.addEventListener("load", func, false);
   } else if (document.addEventListener) {
      document.addEventListener("load", func, false);
   } else if (window.attachEvent) {
      window.attachEvent("onload", func);
   } else if (typeof window.onload != "function") {
      window.onload = func;
   } else {
      var oldonload = window.onload;
      window.onload = function() {
         oldonload();
         func();
      };
   }
}
addLoadListener(function(e){fontSizerOnLoad()});
/*
var oTimeOutMenu;	//variable globale qui sert a annuler le timeout quand on repasse la souris sur le menu avant le delai au bout duquel cette div doit se fermer
function deplier(sElementToShowHide){
	if(!sElementToShowHide) return false;
	var oElementToToggle,oElementNiveau2;
	if(!(oConteneurMenu = document.getElementById('nav_gauche_contenu'))) return false;
	if(oTimeOutMenu){clearTimeout(oTimeOutMenu);}	// voila, a pu timeout
	oListeMenusLvl0 = oConteneurMenu.getElementsByTagName('ul');
	for(iCptListeMenusLvl0 = 0;iCptListeMenusLvl0 < oListeMenusLvl0.length;iCptListeMenusLvl0++){
		oListeUlMenu = oListeMenusLvl0[iCptListeMenusLvl0].getElementsByTagName('ul');
		for(iCptListesMenu = 0;iCptListesMenu < oListeUlMenu.length;iCptListesMenu++){
			oElementNiveau2 = oListeUlMenu[iCptListesMenu]
			if(oListeUlMenu[iCptListesMenu].className.indexOf('content_lvl2') > -1){	// on est dans une liste de niveau 2 : le traitement commence
				oElementParent = oElementNiveau2.parentNode.getElementsByTagName('li');
				oElementFils = oElementNiveau2.parentNode;
				if(oElementFils.getAttribute('id') == 'toggle_list_'+sElementToShowHide){	// l'element hover est l'element courant : on affiche uniquement l'element survole ET l'element deja ouvert au chargement de la page
					if(oListeFille = oElementFils.getElementsByTagName('ul')){
						if(typeof(oListeFille) != 'undefined' && oListeFille.length > 0){
							oUlClassName = oListeFille[0].className;
							if(oUlClassName.indexOf('menu_lvl2_titre_cachee') > -1){
								oListeFille[0].className = 'content_lvl2 menu_lvl2_titre_visible';
							}
						}
					}
				}else{	// l'element hover n'est pas l'element courant : il faut le cacher
					if(oListeFille = oElementFils.getElementsByTagName('ul')){
						if(typeof(oListeFille) != 'undefined' && oListeFille.length > 0){
							oListeFille[0].className = 'content_lvl2 menu_lvl2_titre_cachee';
						}
					}
				}
			}
		}
	}
}

function deplierparent(sElementToShowHide){
	if(!(oElementToShowHide = document.getElementById('toggle_list_'+sElementToShowHide))){return false;}
	if(!(oParentElement = oElementToShowHide.parentNode)){return false;}
	if(!(oParentParentElement = oParentElement.parentNode)){return false;}
	sParentParentId = oParentParentElement.getAttribute('id');
	if(sParentParentId.indexOf('toggle_list_') > -1){
		sParentParentId = sParentParentId.replace('toggle_list_','');
		deplier(sParentParentId);
	}
}

function replierparent(sElementToShowHide){
	if(!(oElementToShowHide = document.getElementById('toggle_list_'+sElementToShowHide))){return false;}
	if(!(oParentElement = oElementToShowHide.parentNode)){return false;}
	if(!(oParentParentElement = oParentElement.parentNode)){return false;}
	sParentParentId = oParentParentElement.getAttribute('id');
	if(sParentParentId.indexOf('toggle_list_') > -1){
		sParentParentId = sParentParentId.replace('toggle_list_','');
		replier(sParentParentId);
	}
}

function replier(sElementToShowHide){
	oTimeOutMenu = setTimeout('doReplier("' + sElementToShowHide + '")', 2000);
}

function doReplier(sElementToShowHide){
	if(!(oElementToToggle = document.getElementById('toggle_list_'+sElementToShowHide))) return false;
	oListeElements = oElementToToggle.getElementsByTagName('ul');
	for(iCptListeElements=0;iCptListeElements<oListeElements.length;iCptListeElements++){
		if(typeof(oListeElements[iCptListeElements]) != 'undefined'){
			oListeElements[iCptListeElements].className = 'content_lvl2 menu_lvl2_titre_cachee';
		}
	}
}*/

/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
***********************************************/
function pausescroller(content, divId, divClass, delay, conteneur){this.content=content; /*message array content*/this.tickerid=divId; /*ID of ticker div to display information*/this.delay=delay; /*Delay between msg change, in miliseconds.*/this.mouseoverBol=0; /*Boolean to indicate whether mouse is currently over scroller (and pause it if it is)*/this.hiddendivpointer=1; /*index of message array for hidden div*/sChaine = '<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+ ((content[1]) ? content[1] : content[0]) +'</div></div>';if(document.getElementById(conteneur)){document.getElementById(conteneur).innerHTML = sChaine;}else{document.write(sChaine);}var scrollerinstance=this;if (window.addEventListener){/*run onload in DOM2 browsers*/window.addEventListener("load", function(){scrollerinstance.initialize()}, false);}else if (window.attachEvent){/*run onload in IE5.5+*/window.attachEvent("onload", function(){scrollerinstance.initialize()});}else if (document.getElementById){/*if legacy DOM browsers, just start scroller after 0.5 sec*/setTimeout(function(){scrollerinstance.initialize()}, 500);}}
// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------
pausescroller.prototype.initialize=function(){this.tickerdiv=document.getElementById(this.tickerid);this.visiblediv=document.getElementById(this.tickerid+"1");this.hiddendiv=document.getElementById(this.tickerid+"2");this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv));/*set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)*/this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px";this.getinline(this.visiblediv, this.hiddendiv);this.hiddendiv.style.visibility="visible";var scrollerinstance=this;document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1};document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0};if (window.attachEvent){/*Clean up loose references in IE*/window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null});}setTimeout(function(){scrollerinstance.animateup()}, this.delay);}
// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------
pausescroller.prototype.animateup=function(){var scrollerinstance=this;if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px";this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px";setTimeout(function(){scrollerinstance.animateup()}, 10);}else{this.getinline(this.hiddendiv, this.visiblediv);this.swapdivs();setTimeout(function(){scrollerinstance.setmessage()}, this.delay);}}
// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------
pausescroller.prototype.swapdivs=function(){var tempcontainer=this.visiblediv;this.visiblediv=this.hiddendiv;this.hiddendiv=tempcontainer;}
pausescroller.prototype.getinline=function(div1, div2){div1.style.top=this.visibledivtop+"px";div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px";}
// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------
pausescroller.prototype.setmessage=function(){var scrollerinstance=this;
if (this.mouseoverBol==1){/*if mouse is currently over scoller, do nothing (pause it)*/setTimeout(function(){scrollerinstance.setmessage()}, 100);}else{var i=this.hiddendivpointer;var ceiling=this.content.length;this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1;this.hiddendiv.innerHTML=(typeof(this.content[this.hiddendivpointer]) != 'undefined') ? this.content[this.hiddendivpointer] : '';this.animateup();}}
pausescroller.getCSSpadding=function(tickerobj){/*get CSS padding value, if any*/if (tickerobj.currentStyle){return tickerobj.currentStyle["paddingTop"]}else if (window.getComputedStyle){/*if DOM2*/return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")}else{return 0}}

function afficher_dates(optionSelectionnee){if(!(oSelectSelectionHeure = document.getElementById('select_selection_heure'))){return false;}oSelectSelectionHeure.innerHTML = aTabSelect["i"+optionSelectionnee];}
