/**** Extrait du livre d'Yves Lecouturier : "Nés en Normandie" ****/

function Doc_Lecouturier(Marge,Titre,Sous_titre,Dates,Texte)
{

if (Sous_titre !='')
Sous_titre='<FONT FACE="Arial" SIZE="4"><B>'+Sous_titre+'</B><BR><BR>';

if (Dates !='')
Dates='<FONT FACE="Arial" SIZE="3"><B>'+Dates+'</B><BR><BR>';

Fenetre=window.open ("","","toolbar=no,location=no,directories=no,menuBar=no,scrollbars=yes,resizable=yes,width=500,height=600,left=300,top=25"); // width=(parent.Droite.document.width-520),height=(window.height-50),
Fenetre.document.open ();
Fenetre.document.writeln ('<HTML>');
Fenetre.document.writeln ('<HEAD>');
Fenetre.document.writeln ('<TITLE>'+Titre+'</TITLE>');
Fenetre.document.writeln ('  <STYLE TYPE="text/css">');
Fenetre.document.writeln ('  BODY {scrollbar-face-color:#D2A654;scrollbar-shadow-color:#7D2B03;scrollbar-highlight-color:#FFFF99;scrollbar-3dlight-color:#7D2B03;scrollbar-darkshadow-color:#7D2B03;scrollbar-track-color:#EDDFC1;scrollbar-arrow-color:#FFD903;}');
Fenetre.document.writeln ('  .Fermer {font-size:12px;font-family:arial,helvetica; font-weight:bold;border:2px solid  #EFCB4F; color: #954C09; background: #F0E0A8; border-color: #FCFDE6 #7D3025 #BE0000 #FFFBE8;}');
Fenetre.document.writeln ('  </STYLE>');
Fenetre.document.writeln ('</HEAD>');
Fenetre.document.writeln ('<BODY BACKGROUND="../Images/Fond_beige.jpg" BGCOLOR="#F5EEC5" TEXT="#8E0300" LINK="#750026" VLINK="#800046" ALINK="#FF0000">');
Fenetre.document.writeln ('<TABLE ALIGN="Center" BORDER="0" CELLSPACING="'+Marge+'" HEIGHT="100%" WIDTH="100%">');
Fenetre.document.writeln (' <TR>');//---------------- Extrait du livre --------------------
Fenetre.document.writeln ('  <TD ALIGN="Center">');
Fenetre.document.writeln ('   <DIV ALIGN="Center"><FONT COLOR="#8E0300" FACE="Arial" SIZE="5"><B>'+Titre+'</B><BR><BR>'+Sous_titre+Dates);
Fenetre.document.writeln ('   <DIV STYLE="text-align:justify;"><FONT COLOR="#8E0300" FACE="Arial" SIZE="3"><B>'+Texte+'</B></DIV>');
Fenetre.document.writeln ('  </TD>');
Fenetre.document.writeln (' </TR>');
Fenetre.document.writeln (' <TR>');//-------------- Références du livre -------------------
Fenetre.document.writeln ('  <TD ALIGN="Center">');
Fenetre.document.writeln ('   <TABLE ALIGN="Center" BGCOLOR="#D5A35E" BORDER="0" CELLSPACCING="10" CELLPADDING="0">');// HEIGHT="100%" WIDTH="100%"
Fenetre.document.writeln ('    <TR>');
Fenetre.document.writeln ('     <TD ALIGN="Center" BGCOLOR="#ECB468" VALIGN="Middle"><FONT COLOR="#702407" FACE="Arial" SIZE="1">&nbsp;D\'après le livre d\'Yves LECOUTURIER&nbsp;<BR><FONT COLOR="#A9370B">«Nés en Normandie»<BR><FONT COLOR="#FFFFFF">&nbsp;Avec l\'aimable autorisation de l\'auteur&nbsp;</FONT></FONT></FONT></TD>');
Fenetre.document.writeln ('     <TD ALIGN="Center" BGCOLOR="#FEC170" VALIGN="Middle"><FONT COLOR="#000000" FACE="Arial" SIZE="1">&nbsp;Editions Charles Corlet&nbsp;<BR>&nbsp;Avenue du Général de Gaulle&nbsp;</FONT><BR><FONT SIZE="1" FACE="Arial" COLOR="#000000">&nbsp;14110 CONDE SUR NOIREAU&nbsp;</FONT></TD>');
Fenetre.document.writeln ('    </TR>');
Fenetre.document.writeln ('   </TABLE>');
Fenetre.document.writeln ('  </TD>');
Fenetre.document.writeln (' </TR>');
Fenetre.document.writeln (' <TR><TD ALIGN="Center"><FORM><INPUT CLASS="Fermer" TYPE="button" NAME="Bouton" VALUE=" Fermer " onclick="window.close()"></FORM></TD></TR>' );
Fenetre.document.writeln (' </TABLE>');
Fenetre.document.writeln ('</BODY>');
Fenetre.document.writeln ('</HTML>');
Fenetre.document.close ();
}
