// JavaScript Document

function date ( format, timestamp ) {
    // http://kevin.vanzonneveld.net
    // +   original by: Carlos R. L. Rodrigues (http://www.jsfromhell.com)
    // +      parts by: Peter-Paul Koch (http://www.quirksmode.org/js/beat.html)
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: MeEtc (http://yass.meetcweb.com)
    // +   improved by: Brad Touesnard
    // +   improved by: Tim Wiel
    // +   improved by: Bryan Elliott
    // +   improved by: Brett Zamir
    // +   improved by: David Randall
    // *     example 1: date('H:m:s \\m \\i\\s \\m\\o\\n\\t\\h', 1062402400);
    // *     returns 1: '09:09:40 m is month'
    // *     example 2: date('F j, Y, g:i a', 1062462400);
    // *     returns 2: 'September 2, 2003, 2:26 am'
    // *     example 3: date('Y W o', 1062462400);
    // *     returns 3: '2003 36 2003'
    // *     example 4: x = date('Y m d', (new Date()).getTime()/1000); // 2009 01 09
    // *     example 4: (x+'').length == 10
    // *     returns 4: true
 
    var a, jsdate=(
        (typeof(timestamp) == 'undefined') ? new Date() : // Not provided
        (typeof(timestamp) == 'number') ? new Date(timestamp*1000) : // UNIX timestamp
        new Date(timestamp) // Javascript Date()
    );
    var pad = function(n, c){
        if( (n = n + "").length < c ) {
            return new Array(++c - n.length).join("0") + n;
        } else {
            return n;
        }
    };
    var txt_weekdays = ["Dimanche","Lundi","Mardi","Mercredi",
        "Jeudi","Vendredi","Samedi"];
    var txt_ordin = {1:"er",2:"",3:"",21:"",22:"",23:"",31:""};
    var txt_months =  ["", "janvier", "f&eacute;vrier", "mars", "avril",
        "mai", "juin", "juillet", "ao&ucirc;t", "septembre", "octobre", "novembre",
        "d&eacute;cembre"];
 
    var f = {
        // Day
            d: function(){
                return pad(f.j(), 2);
            },
            D: function(){
                var t = f.l();
                return t.substr(0,2);
            },
            j: function(){
                return jsdate.getDate();
            },
            l: function(){
                return txt_weekdays[f.w()];
            },
            N: function(){
                return f.w() + 1;
            },
            S: function(){
                return txt_ordin[f.j()] ? txt_ordin[f.j()] : 'th';
            },
            w: function(){
                return jsdate.getDay();
            },
            z: function(){
                return (jsdate - new Date(jsdate.getFullYear() + "/1/1")) / 864e5 >> 0;
            },
 
        // Week
            W: function(){
                var a = f.z(), b = 364 + f.L() - a;
                var nd2, nd = (new Date(jsdate.getFullYear() + "/1/1").getDay() || 7) - 1;
 
                if(b <= 2 && ((jsdate.getDay() || 7) - 1) <= 2 - b){
                    return 1;
                } else{
 
                    if(a <= 2 && nd >= 4 && a >= (6 - nd)){
                        nd2 = new Date(jsdate.getFullYear() - 1 + "/12/31");
                        return date("W", Math.round(nd2.getTime()/1000));
                    } else{
                        return (1 + (nd <= 3 ? ((a + nd) / 7) : (a - (7 - nd)) / 7) >> 0);
                    }
                }
            },
 
        // Month
            F: function(){
                return txt_months[f.n()];
            },
            m: function(){
                return pad(f.n(), 2);
            },
            M: function(){
                t = f.F(); return t.substr(0,3);
            },
            n: function(){
                return jsdate.getMonth() + 1;
            },
            t: function(){
                var n;
                if( (n = jsdate.getMonth() + 1) == 2 ){
                    return 28 + f.L();
                } else{
                    if( n & 1 && n < 8 || !(n & 1) && n > 7 ){
                        return 31;
                    } else{
                        return 30;
                    }
                }
            },
 
        // Year
            L: function(){
                var y = f.Y();
                return (!(y & 3) && (y % 1e2 || !(y % 4e2))) ? 1 : 0;
            },
            o: function(){
                if (f.n() === 12 && f.W() === 1) {
                    return jsdate.getFullYear()+1;
                }
                if (f.n() === 1 && f.W() >= 52) {
                    return jsdate.getFullYear()-1;
                }
                return jsdate.getFullYear();
            },
            Y: function(){
                return jsdate.getFullYear();
            },
            y: function(){
                return (jsdate.getFullYear() + "").slice(2);
            },
 
        // Time
            a: function(){
                return jsdate.getHours() > 11 ? "pm" : "am";
            },
            A: function(){
                return f.a().toUpperCase();
            },
            B: function(){
                // peter paul koch:
                var off = (jsdate.getTimezoneOffset() + 60)*60;
                var theSeconds = (jsdate.getHours() * 3600) +
                                 (jsdate.getMinutes() * 60) +
                                  jsdate.getSeconds() + off;
                var beat = Math.floor(theSeconds/86.4);
                if (beat > 1000) beat -= 1000;
                if (beat < 0) beat += 1000;
                if ((String(beat)).length == 1) beat = "00"+beat;
                if ((String(beat)).length == 2) beat = "0"+beat;
                return beat;
            },
            g: function(){
                return jsdate.getHours() % 12 || 12;
            },
            G: function(){
                return jsdate.getHours();
            },
            h: function(){
                return pad(f.g(), 2);
            },
            H: function(){
                return pad(jsdate.getHours(), 2);
            },
            i: function(){
                return pad(jsdate.getMinutes(), 2);
            },
            s: function(){
                return pad(jsdate.getSeconds(), 2);
            },
            u: function(){
                return pad(jsdate.getMilliseconds()*1000, 6);
            },
 
        // Timezone
            //e not supported yet
            I: function(){
                var DST = (new Date(jsdate.getFullYear(),6,1,0,0,0));
                DST = DST.getHours()-DST.getUTCHours();
                var ref = jsdate.getHours()-jsdate.getUTCHours();
                return ref != DST ? 1 : 0;
            },
            O: function(){
               var t = pad(Math.abs(jsdate.getTimezoneOffset()/60*100), 4);
               if (jsdate.getTimezoneOffset() > 0) t = "-" + t; else t = "+" + t;
               return t;
            },
            P: function(){
                var O = f.O();
                return (O.substr(0, 3) + ":" + O.substr(3, 2));
            },
            //T not supported yet
            Z: function(){
               var t = -jsdate.getTimezoneOffset()*60;
               return t;
            },
 
        // Full Date/Time
            c: function(){
                return f.Y() + "-" + f.m() + "-" + f.d() + "T" + f.h() + ":" + f.i() + ":" + f.s() + f.P();
            },
            r: function(){
                return f.D()+', '+f.d()+' '+f.M()+' '+f.Y()+' '+f.H()+':'+f.i()+':'+f.s()+' '+f.O();
            },
            U: function(){
                return Math.round(jsdate.getTime()/1000);
            }
    };
 
    return format.replace(/[\\]?([a-zA-Z])/g, function(t, s){
        if( t!=s ){
            // escaped
            ret = s;
        } else if( f[s] ){
            // a date function exists
            ret = f[s]();
        } else{
            // nothing special
            ret = s;
        }
 
        return ret;
    });
}

// fonction qui permet de lister tous les événements contenus dans eventsList.js et de les afficher dans events/agenda.htm

function eventsList(liste) {
	nbre = liste.length;
	current = new Date();
	mois = date('m', current);
	annee = date('Y', current);
	auj = date ('d', current);
	stampToday = mktime(0,0,0,mois,auj,annee);
	for(i=0;i<nbre;i++) {
		itemDate = liste[i][0];
		eventYr = itemDate.substr(0,4);
		eventMonth = itemDate.substr(4,2);
		eventDay = itemDate.substr(6,2);
		eventStamp = mktime(0,0,0,eventMonth, eventDay, eventYr);
		if (eventStamp >= stampToday) {
			eventDate = date('j F Y', eventStamp);
			libelle = liste[i][1];
			lieu = liste[i][2];
			organisateur = liste[i][3];
			url = liste[i][4];
			document.write('<b>'+eventDate+'</b><br /><span class="sousTitreContent">'+libelle+', '+lieu+'</span><br />Organisateur: '+organisateur+'<br /><a href="'+url+'" target="_blank" class="link">Plus d\'informations</a><br /><br />');
		}
	}

}

// fonction qui permet de lister tous les événements contenus dans eventsList.js et de les afficher dans la home page index.htm

function eventsHome(liste, nbreAffiche) {
	nbre = liste.length;
	compteur = 1;
	current = new Date();
	mois = date('m', current);
	annee = date('Y', current);
	auj = date ('d', current);
	stampToday = mktime(0,0,0,mois,auj,annee);
	for(i=0;i<nbre;i++) {
		itemDate = liste[i][0];
		eventYr = itemDate.substr(0,4);
		eventMonth = itemDate.substr(4,2);
		eventDay = itemDate.substr(6,2);
		eventStamp = mktime(0,0,0,eventMonth, eventDay, eventYr);
		if (eventStamp >= stampToday && compteur<=nbreAffiche) {
			eventDate = date('j F Y', eventStamp);
			libelle = liste[i][1];
			lieu = liste[i][2];
			url = liste[i][4];
			cible = liste[i][5];
			if(url !== ""){
				var info = '&nbsp;<a href="'+url+'" class="link" target="'+cible+'">Plus d\'informations</a><br />';
			}
			else {  info = ""; }
			document.write('<br /><b class="colorOfac">'+eventDate+'</b><br />'+libelle+', '+lieu+info);
			compteur++;
		}
	}

}

// fonction qui permet de lister un nombre donné d'articles de la revue de presse contenus dans newsList.js et de les afficher dans media/revueDePresse.htm

function newsList(liste, ptDepart, nbreAffiche) { //nbreAffiche: le nombre d'article qui s'afficheront sur la page
	nbre = liste.length;
	if (nbreAffiche == -1) { 
		nbreAffiche = liste.length; 
		lien = '<img src="../../../icons/common/bullet_previous.gif" align="absmiddle"><a href="revueDePresse.htm" class="linkTop">Retour</a>';
		titrePage = '<table width="100%" cellpadding="5"><tr><td><span class="titreContent">Archives - Revue de Presse Santé</span></td><td align="right"><img src="../../../icons/common/bullet_previous.gif" align="absmiddle"><a href="revueDePresse.htm" class="linkTop">Retour</a></td></tr></table>';
		}
	else { 
	    lien = '<a href="revueDePresse.htm?archives" class="linkTop">Archives</a><img src="../../../icons/common/bullet_next.gif" align="absmiddle">'; 
		titrePage = '&nbsp;&nbsp;<span class="titreContent">Revue de Presse Santé</span>';
		}
	compteur = 1;
	document.write(titrePage+'<br /><br /><table cellpadding="5">');
	for(i=0;i<nbre;i++) {
		itemDate = liste[i][0];
		newsYr = itemDate.substr(0,4);
		newsMonth = itemDate.substr(4,2);
		newsDay = itemDate.substr(6,2);
		today = new Date();
		lastYr = today.getFullYear() - 1;
		currentMonth = today.getMonth()+1;
		if(currentMonth<10) {
			dateLastYr = String(lastYr)+"0"+String(today.getMonth()+1)+String(today.getDate());	
		}
		else {
			dateLastYr = String(lastYr)+String(today.getMonth()+1)+String(today.getDate());	
		}
		newsStamp = mktime(0,0,0,newsMonth, newsDay, newsYr);
		newsDate = date('d.m.Y', newsStamp);
		titre = liste[i][1];
		publication = liste[i][2];
		texte = liste[i][3];
		fichier = liste[i][4];
		bouton = liste[i][6];
		if (compteur <= nbreAffiche && compteur-1>=ptDepart && itemDate>dateLastYr) {
			document.write('<tr><td valign="top"><b class="colorOfac">'+newsDate+'</b></td><td><b>'+titre+'</b> ('+publication+')<br />'+texte+'<br/><br/></td><td valign="top"><a href="'+fichier+'" target="_blank"><img src="../../../icons/common/btn_'+bouton+'.gif" border="0"></a></td></tr>');
		}
		compteur++;
	}
	document.write('<tr><td colspan="3">'+lien+'</a></td><tr></table><br />');
}

function newsListHome(liste) { //nbreAffiche: le nombre d'article qui s'afficheront sur la page
	nbre = liste.length;
	compteur = 1;
	for(i=0;i<nbre;i++) {
		itemDate = liste[i][0];
		newsYr = itemDate.substr(0,4);
		newsMonth = itemDate.substr(4,2);
		newsDay = itemDate.substr(6,2);
		newsStamp = mktime(0,0,0,newsMonth, newsDay, newsYr);
		newsDate = date('d.m.Y', newsStamp);
		titre = liste[i][1];
		publication = liste[i][2];
		texte = liste[i][3];
		texte = texte.substring(0,150);
		fichier = liste[i][4];
		if (compteur <= 2) {
			document.write('<br/><b class="colorOfac">'+newsDate+'</b> - <b>'+titre+'</b><br />'+texte+'<a href="media/'+fichier+'" class="link"  target="_blank">... plus</a><br/>');
		}
		compteur++;
	}
}

// fonction qui permet de lister un nombre donné de communiqués de presse contenus dans pReleaseList_fr.js et de les afficher dans media/pressReleases.htm

function pReleaseList(liste, ptDepart, nbreAffiche) { //nbreAffiche: le nombre d'article qui s'afficheront sur la page
	nbre = liste.length;
	if (nbreAffiche == -1) { 
		nbreAffiche = liste.length; 
		lien = '<img src="../../../icons/common/bullet_previous.gif" align="absmiddle"><a href="pressReleases.htm" class="linkTop">Retour</a>';
		titrePage = '<table width="100%" cellpadding="5"><tr><td><span class="titreContent">Archives - Communiqués de presse</span></td><td align="right"><img src="../../../icons/common/bullet_previous.gif" align="absmiddle"><a href="pressReleases.htm" class="linkTop">Retour</a></td></tr></table>';
		}
	else { 
	    lien = '<a href="pressReleases.htm?archives" class="linkTop">Archives</a><img src="../../../icons/common/bullet_next.gif" align="absmiddle">'; 
		titrePage = '&nbsp;&nbsp;<span class="titreContent">Communiqués de presse</span>';
		}
	compteur = 1;
	document.write(titrePage+'<br /><br /><table cellpadding="5">');
	for(i=0;i<nbre;i++) {
		itemDate = liste[i][0];
		newsYr = itemDate.substr(0,4);
		newsMonth = itemDate.substr(4,2);
		newsDay = itemDate.substr(6,2);
		newsStamp = mktime(0,0,0,newsMonth, newsDay, newsYr);
		newsDate = date('d.m.Y', newsStamp);
		titre = liste[i][1];
		publication = liste[i][2];
		texte = liste[i][3];
		fichier = liste[i][4];
		bouton = liste[i][5];
		if (compteur <= nbreAffiche && compteur-1>=ptDepart) {
			document.write('<tr><td valign="top"><b class="colorOfac">'+newsDate+'</b></td><td>'+titre+'<br /></td><td valign="top"><a href="'+fichier+'" target="_blank"><img src="../../../icons/common/btn_'+bouton+'.gif" border="0"></a></td></tr>');
		}
		compteur++;
	}
	document.write('<tr><td colspan="3">'+lien+'</a></td><tr></table><br />');
}

function cuttingsList(liste, ptDepart, nbreAffiche) { //nbreAffiche: le nombre d'article qui s'afficheront sur la page
	nbre = liste.length;
	if (nbreAffiche == -1) { 
		nbreAffiche = liste.length; 
		lien = '<img src="../../../icons/common/bullet_previous.gif" align="absmiddle"><a href="onParleDOfac.htm" class="linkTop">Retour</a>';
		titrePage = '<table width="100%" cellpadding="5"><tr><td><span class="titreContent">Archives - On parle d\'Ofac</span></td><td align="right"><img src="../../../icons/common/bullet_previous.gif" align="absmiddle"><a href="onParleDOfac.htm" class="linkTop">Retour</a></td></tr></table>';
		}
	else { 
	    lien = '<a href="onParleDOfac.htm?archives" class="linkTop">Archives</a><img src="../../../icons/common/bullet_next.gif" align="absmiddle">'; 
		titrePage = '&nbsp;&nbsp;<span class="titreContent">On parle d\'Ofac</span>';
		}
	compteur = 1;
	document.write(titrePage+'<br /><br /><table cellpadding="5">');
	for(i=0;i<nbre;i++) {
		itemDate = liste[i][0];
		newsYr = itemDate.substr(0,4);
		newsMonth = itemDate.substr(4,2);
		newsDay = itemDate.substr(6,2);
		today = new Date();
		lastYr = today.getFullYear() - 1;
		currentMonth = today.getMonth()+1;
		if(currentMonth<10) {
			dateLastYr = String(lastYr)+"0"+String(today.getMonth()+1)+String(today.getDate());	
		}
		else {
			dateLastYr = String(lastYr)+String(today.getMonth()+1)+String(today.getDate());	
		}
		newsStamp = mktime(0,0,0,newsMonth, newsDay, newsYr);
		newsDate = date('d.m.Y', newsStamp);
		titre = liste[i][1];
		publication = liste[i][2];
		texte = liste[i][3];
		fichier = liste[i][4];
		bouton = liste[i][6];
		if (compteur <= nbreAffiche && compteur-1>=ptDepart) {
			document.write('<tr><td valign="top"><b class="colorOfac">'+newsDate+'</b></td><td><b>'+titre+'</b> ('+publication+')<br />'+texte+'<br/><br/></td><td valign="top"><a href="'+fichier+'" target="_blank"><img src="../../../icons/common/btn_'+bouton+'.gif" border="0"></a></td></tr>');
		}
		compteur++;
	}
	document.write('<tr><td colspan="3">'+lien+'</a></td><tr></table><br />');
}
