function display_image(selection,hauteur,largeur) {
PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width="+largeur+",height="+hauteur);
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write("<TITLE>ParisCyber</TITLE>");
PreView.document.write("</HEAD><BODY BACKGROUND=\"/images/bg_main.jpg\">");
PreView.document.write("<CENTER>");
PreView.document.write("<IMG HSPACE=0 VSPACE=0 " + "SRC='" + selection + "'>");
PreView.document.write("<HR><FORM><INPUT TYPE='button' VALUE='Fermer' " +
"onClick='window.close()'></FORM>");
PreView.document.write("</CENTER>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
}