// 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>Michel Dauguet<\/title><body bgcolor="#000000" leftmargin="0" topmargin="0" marginheight="0" marginwidth="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=\"\" \/></td></tr></table>');
newWindow.document.write('<\/body><\/html>');
newWindow.document.close();
newWindow.focus();
}
