﻿// JScript File

function agrandir(pathImage,wLargeur,wHauteur,lang)
{
    var parametre;
    var title;
    if(lang=="fr")
    {
        title = "Le Festival MONTRÉAL EN LUMIÈRE";
    }
    else
    {
        title = "The MONTREAL HIGH LIGHTS Festival";
    }
	
    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=iso-8859-1\" />");
    myWindow.document.writeln("<title>" + title + "</title>");
    myWindow.document.writeln("</head>");
    myWindow.document.writeln("<body style=\"margin=0; \" onblur=\"JavaScript:window.close();self.close();\" onclick='window.close()'>");
    myWindow.document.writeln("<div style=\"text-align:center;\">");
    myWindow.document.writeln("<img src=\"" + pathImage + "\" />");
    myWindow.document.writeln("</div>");
    myWindow.document.writeln("</body>");
    myWindow.document.writeln("</html>");
}