function date_complete() { 
var now = new Date(), day = now.getDay(), hours = now.getHours(), minutes = now.getMinutes(), seconds = now.getSeconds(), month = now.getMonth(), year = now.getYear(), date = now.getDate(); 
if (day == 0) { day = "Dimanche"; }
else if (day == 1) { day = "Lundi"; }
else if (day == 2) { day = "Mardi"; }
else if (day == 3) { day = "Mercredi"; }
else if (day == 4) { day = "Jeudi"; }
else if (day == 5) { day = "Vendredi"; }
else { day = "Samedi"; }
if (month == 0) { month = "janvier"; } 
else if (month == 1) { month = "f&#233;vrier"; } 
else if (month == 2) { month = "mars"; } 
else if (month == 3) { month = "avril"; } 
else if (month == 4) { month = "mai"; } 
else if (month == 5) { month = "juin"; } 
else if (month == 6) { month = "juillet"; } 
else if (month == 7) { month = "ao&#251;t"; } 
else if (month == 8) { month = "septembre"; } 
else if (month == 9) { month = "octobre"; } 
else if (month == 10) { month = "novembre"; } 
else { month = "d&#233;cembre"; } 
if (seconds < 10) seconds = "0" + seconds; 
if (minutes < 10) minutes = "0" + minutes; 
time.innerHTML = '<center> '+day+' '+date+' '+month+' '+year+' <br> '+hours+':'+minutes+':'+seconds+' '; 
setTimeout('date_complete()',1000); 
} 
function ecran_maxi() {
//-- Mettre la page en plein ecran 
var txtAgent = navigator.userAgent.toLowerCase();
var txtapp = navigator.appName.toLowerCase();
var iePos = txtAgent.indexOf("msie");
var ffPos = txtAgent.indexOf("mozilla");
var appie = txtapp.indexOf("microsoft");
var appff = txtapp.indexOf("nescape");
window.moveTo(0,0); 

if (appie>=0) {
window.resizeTo(screen.availWidth, screen.availHeight); }
if (appff>=0) {
window.outerHeight = screen.availHeight; 
window.outerWidth = screen.availWidth; }
}
//  document.writeln("<img src=\"" + inImg + "\" width=\"" + dW + "\" height=\"" + dH + "\" border=\"0\">");



//function activite() {
// window.top.location.href = "http://www.eglise-evangelique-evreux.org/cadre_accueil_2.htm?ref='activite.htm'" ;
 //location.href="http://www.eglise-evangelique-evreux.org/cadre_acceuil_2.htm?" + "activite.htm";
//alert("oui");
//}

