/******************************************************************************
  **********************************Gallerie.js***********************************
  ******************************************************************************
  **                           Partie du code du site de la guilde Myth Drannor                            **
  **                                               par Ulmo Mithrandir	                                              **
  ******************************************************************************
  **                          Code javascript de la partie gallerie d'image du site                        **
  ******************************************************************************
  **                                 Ce code est sous licence Creative Commons                               **
  **                       http://creativecommons.org/licenses/by-nc-sa/2.0/be/                      **
  ******************************************************************************
  ******************************************************************************/

function gallerie_affimg(url,larg,haut,auteur,comment) {

	with (window.open(url,'','width='+larg+', height='+haut)) {
	document.open();
	
	document.write('<?xml version="1.0" encoding="iso-8859-1"?'+'>\n');
	document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\n');
	document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">\n\n');
	document.write('<head>\n');
	document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />\n');
	document.write('<meta name="description" content="Site de la guilde Myth Drannor" />\n');
	document.write('<meta name="keywords" content="Myth Drannor, DAoC, Hibernia, Brocéliande" />\n');
	document.write('<meta name="author" content="Ulmo Mithrandir" />\n');
	document.write('<title>Site de la guilde Myth Drannor - DAoC - Hibernia/Broc&eacute;liande</title>\n');
	document.write('<link href="css/Myth_wood.css" rel="stylesheet" type="text/css" />\n');
	document.write('</head>\n\n');
	document.write('<body>\n');
	document.write('<table>\n');
	document.write('\t<tr>\n');
	document.write('\t\t<td colspan="2" style="text-align: center;"><img alt="image" src="'+url+'" /></td>\n');
	document.write('\t</tr>\n\t<tr>\n');
	document.write('\t\t<td style="text-align: center; width: 25%;">Auteur : '+auteur+'</td><td style="text-align: center;">'+comment+'</td>\n');
	document.write('\t</tr>\n');
	document.write('</table>\n');
	document.write('</body>\n');
	document.write('</html>');
	
	document.close();
	}
	
}