/* fonctions.js  */

function AfficherDate()
    {
//  months = new Array("janvier","f&eacute;vrier","mars","avril","mai","juin","juillet","ao&ucirc;t","septembre","octobre","novembre","d&eacute;cembre"); 
    months = new Array("january","february","march","april","may","june","july","august","september","october","november","december"); 
    
    var mydate = new Date();
//  var annee = mydate.getYear(); 
    var annee = mydate.getFullYear();
    var mois = mydate.getMonth(); 
    var jour = mydate.getDate(); 
/*
    if (annee < 2000) 
        {
        if (document.all)
            annee = "19" + annee;
        else
            annee += 1900;
        } 
*/  
//  document.write(jour + ' ' + months[mois] + ' ' + annee);    
    document.write(months[mois] + ' ' + jour + 'th, ' + annee); 
    }

    
function Pop(url,w,h)
    {
    myWindow = window.open(url, "tinyWindow", 'toolbar=no,width='+w+',height='+h);
    }
    
function PopPlan(url2,w,h)
    {
myWindowP = window.open(url2, "tinyWindow", 'toolbar=no,resizable=yes,scrollbars=yes,width='+w+',height='+h);

/*  myWindowP = window.open("", "tinyWindow", 'toolbar=no,resizable=yes,width='+w+',height='+h);
    myWindowP.document.write('<html><body bgcolor="#FFFFFF"  leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
    myWindowP.document.write('<div align="center"><img src="'+url+'" width="98%" height="98%"></div>');
    myWindowP.document.write('</body></html>');
    myWindowP.document.close();
*/  
    }   
