// JavaScript Document

function zoom(imageName){
newWindow = window.open("","newWindow","width=550,height=550,scrollbars=no,left=50,top=50");
newWindow.document.open();
newWindow.document.write('<html><title>Hôtel de Normandie<\/title><style>*{ padding:0; margin: 0; }</style><body style="background-color:#4D895C; margin:0; padding:0;"  onBlur="self.close()">'); 
newWindow.document.write('<table style="width: 100%; height: 100%;"><tr><td style=\"text-align: center; vertical-align: middle;\"><img src=\"'+imageName+'\" alt=\"\" style=\"border: solid 1px #BDCB7A;\" \/></td></tr></table>');
newWindow.document.write('<\/body><\/html>');
newWindow.document.close();
newWindow.focus();
}
