// JavaScript Document
function GrandePhoto(titre,photo,W,H) {
  myWin=open("","newin","width="+W+",height="+H+",resizable=0,scrollbars=0,status=0");
  myWin.document.open(); 
  myWin.document.write('<html><head><title>'+titre+'</title></head><body BGCOLOR="#ffffff" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">');
  myWin.document.write('<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"><tr><td>');
  myWin.document.write('<IMG SRC="'+photo+'" WIDTH="'+W+'" HEIGHT="'+H+'" BORDER="0">');
  myWin.document.write("</table></tr></td>");
  myWin.document.write("</body></html>");
  myWin.document.close();  
}
function GrandePhotoMontre(titre,photo,W,H) {
  W2 = W + 30;
  H2 = H + 30;
  myWin=open("","newin","width="+W2+",height="+H2+",resizable=0,scrollbars=0,status=0");
  myWin.document.open(); 
  myWin.document.write('<html><head><title>'+titre+'</title></head><body BGCOLOR="#ffffff" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">');
  myWin.document.write('<TABLE width="100%" height="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0"><tr><td align="center" valign="middle">');
  myWin.document.write('<IMG SRC="'+photo+'" WIDTH="'+W+'" HEIGHT="'+H+'" BORDER="0">');
  myWin.document.write("</table></tr></td>");
  myWin.document.write("</body></html>");
  myWin.document.close();  
}
function Recevoir_Codes(email) {
	var window2=window.open('popup_envoie_codes.php?email='+email,'PopUpEnvoiCodes','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=420,height=130,top=0,left=0');
}