function ouvre(titre,photo,largeur,hauteur){
propriete = "top=0,left=0,resizable=no,";
propriete += "toolbar=no, scrollbars=no, menubar=no, location=no, statusbar=no";
propriete += ",width=" + largeur + ",height=" + hauteur;
w=window.open("", "_blank", propriete);
w.document.write( '</body></html>\n' );
w.document.write( '<title>'+titre+'</title></head>\n' );
w.document.write( '<body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" scroll="no" topmargin="0">\n' );
w.document.write( '<a href="javascript:window.close();"><img src="'+photo+'" border="0" width="'+largeur+'" height="'+hauteur+'" alt=""></a>\n' );
w.document.write( '</body></html>' );
w.document.close(); 
}
