document.write("<table width='765' border='0' cellspacing='0'>");
document.write("<tr>");
document.write("<td width='3' bgcolor='#e8e9b3'></td>");
document.write(" <td width='755' height='170' background='http://www.labibleparlesaguenay.org/Images/entete.gif'></td>");
document.write("<td>&nbsp;</td>");
document.write("<td width='3' bgcolor='#e8e9b3'></td>");
document.write(" </tr>");
document.write(" <tr bgcolor='#AFBED6'>");
document.write(" <td height='22' rowspan='2' bgcolor='#E8E9B3'></td>");
document.write(" <td height='16'><div align='right'>");


<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set the font color, face, size, and style...

// Acceptable TheFontFace values are those you
// normally use in HTML, for instance:
//     Arial
//     TimesRoman
//     Courier

// Acceptable TheFontColor values are any #RRGGBB
// same as HTML. Remember to use the # sign and
// enclose in quotes.  Typical values:
//     #FF0000 is red
//     #00FF00 is green
//     #0000FF is blue

// Acceptable TheFontSize values are 2-7.

// Acceptable TheFontStyle values are (exactly!):
//     plain
//     bold
//     italic
//     bolditalic

var TheFontFace  = "Times Roman";
var TheFontColor = "#000000";
var TheFontSize  = "2";
var TheFontStyle = "bold"; 

// Set the separator between the date elements;
// usually use either - or /.

var TheSeparator = " ";

// Show or do not show the day of the week; set
// yes to show, no not to show.

var ShowDay ="yes";

// Do Not Edit Below This Line
// ==============================================

var Days = new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
var Months = new Array("janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre");
var TheDate = new Date();

var TheWeekDay = TheDate.getDay();
var Day ="";
if (ShowDay == "yes"){
    Day = Days[TheWeekDay];
    Day += " ";}

var TheMonth = TheDate.getMonth() + 1;
if (TheMonth < 10) TheMonth = "0" + TheMonth;
TheMonth = Months[TheMonth - 1];
var TheMonthDay = TheDate.getDate();
if (TheMonthDay < 10) TheMonthDay = "0" + TheMonthDay;

var TheYear = TheDate.getYear();
if (TheYear < 1000) TheYear += 1900;

var FontTagLeft  = "";
var FontTagRight = "";

if (TheFontStyle == "bold"){
    FontTagLeft = "<b>";
    FontTagRight ="</b>";}
    
if (TheFontStyle == "italic"){
    FontTagLeft = "<i>";
    FontTagRight ="</i>";}
    
if (TheFontStyle == "bolditalic"){
    FontTagLeft = "<b><i>"; 
    FontTagRight = "</i></b>";}    

var D = "";
D += "<font color='"+TheFontColor+"' face='"+TheFontFace+"' size='"+TheFontSize+"'>";
D += FontTagLeft+Day+ ", " + TheMonthDay+TheSeparator+TheMonth+TheSeparator+TheYear+FontTagRight;
D += "</font>";

document.write(D);

//-->
document.write(" </div></td>");
document.write(" <td height='16'></td>");
document.write(" <td height='22' rowspan='2' bgcolor='#E8E9B3'></td>");
document.write(" </tr>");
document.write(" <tr bgcolor='#AFBED6'>");
document.write(" <td height='7' bgcolor='#E8E9B3'></td>");
document.write(" <td height='7' bgcolor='#E8E9B3'></td>");
document.write(" </tr>");
document.write("</table>");