﻿function agrandir(pImage,wLargeur,wHauteur,nomArticle){
	var parametre 
	
	parametre = "toolbar=0,status=0,menubar=0,scrollbars=0,location=0";
	parametre = parametre + "resizable=no,width="+wLargeur+",height="+wHauteur ;
	
	myWindow = window.open("","", parametre);
	myWindow.document.writeln("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
	myWindow.document.writeln("<head>");
	myWindow.document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
	myWindow.document.writeln("<title>Le Festival International de Jazz de Montréal</title>");
	myWindow.document.writeln("</head>");
	myWindow.document.writeln("<body style=\"background-color:#ffffff; color:#000000;  font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold; font-size:0.8em; margin=0px; \" onblur=\"JavaScript:window.close();self.close();\" onclick='window.close()'>");
	myWindow.document.writeln("<div style='margin:0 auto 0 auto; text-align:center;'>");
	myWindow.document.writeln("<img src=\""+pImage+"\" border=\"0\" /><br />");
	myWindow.document.writeln(nomArticle);	
	myWindow.document.writeln("</div>");
	myWindow.document.writeln("</body>");
	myWindow.document.writeln("</html>");
}


